ShenheApplication.java 620 Bytes
package com.cnlive.shenhe;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import tk.mybatis.spring.annotation.MapperScan;

@SpringBootApplication
@ServletComponentScan
@MapperScan(basePackages= {"com.cnlive.shenhe.mapper"})
public class ShenheApplication extends SpringBootServletInitializer {

	public static void main(String[] args) {
		SpringApplication.run(ShenheApplication.class, args);
	}
}