springboot启动类 注解


@SpringBootApplication // 启动类 @EntityScan(basePackages = "cn.mallss.beans") // 用于扫描JPA实体类 @Entity @ComponentScan(basePackages = "cn.mallss.api") // 用于扫描@Controller @Service @EnableJpaRepositories(basePackages = "cn.mallss.api") // 用于扫描Dao @Repository @EnableScheduling // 开启定时器 public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }

猜你喜欢

转载自www.cnblogs.com/Smile-Jie/p/9254395.html
今日推荐