springboot
lackluster_lxclk
从事软件开发5年
展开
-
@Aspect 注解使用详解
@Aspect 注解使用详解(全面)转载 2022-03-09 10:28:04 · 315 阅读 · 0 评论 -
cron表达式
cron表达式转载 2022-01-10 16:30:36 · 1247 阅读 · 0 评论 -
IDEA 使用JRebel实现java 程序热部署
IDEA使用,热部署原创 2022-01-07 10:59:24 · 157 阅读 · 0 评论 -
springboot中@Mapper和@Repository的使用区别
spring boot 中DAO层两个常用的注解@Mapper和@Repository,两者功能差不多,容易混淆,使用方法有细微差异,如下:区别:@Repository需要在Spring 中配置DAO包的扫描地址,然后动态生成Dao层的Bean才能被自动注入到Service层中:举例如下:使用@Mapper注解,不需要配置DAO扫描地址,通过Mapper.xml里面的namespace接口地址,动态生成Bean后注入到Service层中。相比@Repository的使用,减少了包扫描的步骤。s原创 2020-09-27 14:53:51 · 665 阅读 · 0 评论 -
FreeMarker空值异常:
freemarker 报错:username:'FreeMarker template error (DEBUG mode; use RETHROW in production!):The following has evaluated to null or missing:==> profile [in template “inc/layout.ftl” at line 28, column 21]Tip: If the failing expression is known to leg原创 2020-07-01 11:23:48 · 14264 阅读 · 1 评论 -
springboot整合Druid不能显示登录界面问题解决方案
springboot2.x版本整合Druid配置完ServletRegistrationBean和FilterRegistrationBean运行,浏览器输入localhost:8080/druid/页面跳转到localhost:8080/druid/login.html但是不显示登录界面,猜测可能是被拦截了,修改ServletRegistrationBean的构造函数,完美解决,上代码: ...原创 2020-02-20 22:24:53 · 5036 阅读 · 7 评论