12345678910111213141516171819202122232425 |
- package fcb.project.manager;
- import org.mybatis.spring.annotation.MapperScan;
- import org.mybatis.spring.annotation.MapperScans;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.boot.context.ApplicationPidFileWriter;
- import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
- import org.springframework.context.annotation.ComponentScan;
- /**
- * @author abnerhou
- * @date 2021/1/5 12:25
- * @desciption
- */
- //@EnableFeignClients
- //@NacosPropertySource(dataId = "abner-test", autoRefreshed = true)
- @EnableDiscoveryClient
- @SpringBootApplication
- @MapperScan(basePackages = {"fcb.project.manager.base.dao"})
- public class FcbProjectManagerApplication {
- public static void main(String[] args) {
- SpringApplication.run(FcbProjectManagerApplication.class , args);
- }
- }
|