框架
转身雪人
随心所欲,认真生活
展开
-
【Spring问题】启动时报错(Cannot determine embedded database driver class for database type NONE)
原创 2018-05-08 16:55:18 · 493 阅读 · 0 评论 -
【Spring问题】如何springboot打包过程中跳过mvn test
在eclipse每次使用run as -> maven install, 总是运行junit test,一些test还关联数据库, 有的比较危险。怎么跳过测试skip test呢?首先确认是springboot的项目<plugin> <groupId>org.springframework.boot</groupId> <ar...原创 2018-05-15 17:10:43 · 10737 阅读 · 0 评论 -
【Spring】@PostConstruct注解
当前类的构造 &gt;&gt; @Autowired &gt;&gt; @PostConstruct 执行顺序从左至右以此。 所以当如果某方法依赖于@Autowired或者希望比其晚,那么可以使用@PostConstruct注解。class A{@Autowiredprivate B b;public A(){ System.out.println("此时B还未被加载...原创 2018-07-31 16:18:48 · 2416 阅读 · 0 评论