随笔分类 -  Spring

熟练工
摘要:问题: Springboot启动报错: Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined i 阅读全文
posted @ 2017-01-05 17:15 傅晓芸 阅读(35633) 评论(1) 推荐(0)
摘要:问题:SpringBoot打包成jar后运行提示没有主清单属性 解决:补全maven中的bulid信息 原因: 因为我使用spring-boot-dependencies这个BOM代替了spring-boot-starter-parent这个parent POM(详见13.2.2. Using Sp 阅读全文
posted @ 2016-12-28 18:02 傅晓芸 阅读(38487) 评论(8) 推荐(6)
摘要:Spring中的类基本都会标注解,所以使用注解匹配切点可以满足绝大部分需求 主要使用@within()/@target @annotaton() @args()等... 匹配@Service类中的所有方法: 或 匹配标注了@RequestMapping的所有方法 匹配参数中有@RequestBody 阅读全文
posted @ 2016-12-02 18:22 傅晓芸 阅读(4660) 评论(0) 推荐(0)