SpringBoot
@Adzc
这个作者很懒,什么都没留下…
展开
-
Spingboot 多模块引入第三方jar包
3. 要想打包部署服务器,需要在启动模块中添加配置信息。ps:启动模块要引用此模块才能将此一起jar打包部署。2. 在此模块中的pom.xml 中引用。1. 在需要的模块中引入jar包。原创 2023-07-19 20:10:48 · 1801 阅读 · 1 评论 -
springboot中@ConfigurationProperties报错
通过yaml配置 person写在实体类上的 @ConfigurationProperties("person") 报错解决:加入@Component原创 2022-05-04 15:22:54 · 752 阅读 · 0 评论 -
proxyBeanMethods
在SpringBoot2 中@Configguration中多了proxyBeanMethods1、配置类里面使用@Bean标注在方法上给容器注册组件,默认也是单实例的2、配置类本身也是组件3、proxyBeanMethods:代理bean的方法 Full(proxyBeanMethods = true)、【保证每个@Bean方法被调用多少次返回的组件都是单实例的】 Lite(proxyBeanMethods = false)【每个@Bean方法被调用多少次返回...原创 2022-04-24 16:10:02 · 4625 阅读 · 0 评论 -
详解springboot springsecurity中的注销和权限控制问题
这篇文章主要介绍了springboot-springsecuroty注销和权限控制,账户注销需要在SecurityConfig中加入开启注销功能的代码,权限控制要导入springsecurity和thymeleaf的整合依赖,本文通过实例代码给大家介绍的非常详细,需要的朋友参考下吧目录1 账户注销1.1 在SecurityConfig中加入开启注销功能的代码1.2 在index.html 添加注销的按钮1.3 启动项目测试2 权限控制2.1 导入springsecuri...原创 2022-04-14 19:54:35 · 1416 阅读 · 0 评论