1、注解
@Autowired、@Qualifier、@Primary
解决多类型冲突的三种方式(@Primary、@Qualifier注解)
2、技术点
SpringBoot注入Bean的几种方式
https://blog.csdn.net/Smy_0114/article/details/122229852
SpringBoot读取配置文件的方式
1、java代码中读取application.properties 文件中的值的方式(@Value、@ConfigurationProperties): https://blog.csdn.net/weixin_42344117/article/details/118087641 2、java代码中读取非application.properties 文件中的值的方式(@PropertySource): https://blog.csdn.net/weixin_42344117/article/details/117605507 3、xml中、java代码中读取jdbc.properties文件中值的方式: https://blog.csdn.net/ChineseSoftware/article/details/123793932 4、SpringBootTest测试类中读取properties文件中值的方式: https://blog.csdn.net/weixin_43876778/article/details/115560215
spring事务传播行为以及在项目中的使用
本地语雀:spring事务传播行为在JD项目中的使用
获取spring上下文对象的正确方式
参考链接
Spring类型装配、注入
语雀:整理的spring引用类型装配、注入
Spring中XML相互引用的两种方式
语雀:Spring中XML相互引用的两种方式
3、技术整合
SpringBoot集成lombok
https://blog.csdn.net/itCatface/article/details/119038565
SpringBoot整合日志
1、SpringBoot中使用@Slf4j(需引入lombok依赖): http://t.csdn.cn/Hc1QO 2、SpringBoot中使用Logger logger = LoggerFactory.getLogger(xxx.class) (不需要引入任何依赖,使用的是SpringBoot默认的slf4j): 3、Spring Boot中正确使用Log的详细总结 - 推荐: https://blog.csdn.net/kerongao/article/details/109679854
SpringBoot集成单元测试
@SpringBootTest: http://t.csdn.cn/Ph9rj
待看 - 比较重要: 使用@SpringBootTest注解进行单元测试
4、项目搭建
SpringBoot项目详细创建步骤
http://t.csdn.cn/yDpgn
5、项目部署
springboot+vue3.0前后端分离上线
|