随笔分类 - SpringBoot相关
摘要:使用@Value注入map、List 实体类 @Value("#{'${list}'.split(',')}") private List<String> list; @Value("#{${maps}}") private Map<String,String> maps; 配置文件 list: t
阅读全文
摘要:https://blog.csdn.net/qq_39415129/article/details/106097496
阅读全文
摘要:链接:https://www.jianshu.com/p/836d455663da 初建一个简单的spring boot 项目,启动后会报错。 Exception encountered during context initialization - cancelling refresh attem
阅读全文
摘要:https://zhuanlan.zhihu.com/p/98846869
阅读全文
摘要:https://www.epubit.com/bookDetails?id=N27915
阅读全文
摘要:https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#aappendix
阅读全文
摘要:https://blog.csdn.net/hp_yangpeng/article/details/88803911?utm_medium=distribute.pc_relevant_download.none-task-blog-searchfrombaidu-18.nonecase&depth
阅读全文
摘要:https://blog.csdn.net/m0_37897396/article/details/81772742
阅读全文
摘要:https://www.jb51.net/article/111066.htm
阅读全文
摘要:https://blog.csdn.net/u011314442/article/details/82188593?utm_medium=distribute.pc_relevant_download.none-task-blog-baidujs-2.nonecase&depth_1-utm_sou
阅读全文
摘要:@Component @Data @ConfigurationProperties(prefix = "person") public class Person{ private String id; private String name; } } @ConfigurationProperties
阅读全文
摘要:https://blog.csdn.net/chengkui1990/article/details/79866499
阅读全文
摘要:https://www.jianshu.com/p/f6ec46bd34a2
阅读全文
摘要:https://www.cnblogs.com/chongaizhen/p/11151892.html
阅读全文
摘要:https://www.cnblogs.com/ldy-blogs/p/8550406.html
阅读全文
摘要:https://blog.csdn.net/qq_38417983/article/details/81128299
阅读全文
摘要:https://blog.csdn.net/ruananqing/article/details/83099180
阅读全文
摘要:事务管理是应用系统开发中必不可少的一部分。Spring 为事务管理提供了丰富的功能支持。Spring 事务管理分为编程式和声明式的两种方式。编程式事务指的是通过编码方式实现事务;声明式事务基于 AOP,将具体业务逻辑与事务处理解耦。声明式事务管理使业务代码逻辑不受污染, 因此在实际使用中声明式事务用
阅读全文