ZhongzhiApplication.java
497 Bytes
package com.zhongzhi;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RestController;
@RestController
@MapperScan(basePackages = {"com.zhongzhi.dao"})
@SpringBootApplication
public class ZhongzhiApplication {
public static void main(String[] args) {
SpringApplication.run(ZhongzhiApplication.class, args);
}
}