flsh

2022年8月7日

Stringboot中@Autowired加了static就属性值就为null

摘要: //错误 @Autowired private static DepartmentDao departmentDao; @Autowired注入,将bean注入进来 @Autowired通过spring的依赖注入只能在对象层级上进行依赖注入,被static修饰变量,是不属于任何实例化的对象拥有, 所 阅读全文

posted @ 2022-08-07 23:05 小鱼洗香香 阅读(332) 评论(0) 推荐(0) 编辑

高级thymeleaf(组件嵌套)

摘要: 1.组件嵌套 1.需要提取的组件加上 th:fragment="组件名" <nav class="col-md-2 d-none d-md-block bg-light sidebar" th:fragment="sidebar"> ... </nav> 2.使用组件的地方加上 th:replace 阅读全文

posted @ 2022-08-07 22:40 小鱼洗香香 阅读(475) 评论(0) 推荐(0) 编辑

Springboot重定向,没有位置没有加“/user”,但是url在请求位置的前面“/user”就出现了

摘要: 是因为“:”后面没有加“/” 原先的 return "redirect:main.html"; 正确的 return "redirect:/main.html"; 阅读全文

posted @ 2022-08-07 00:27 小鱼洗香香 阅读(81) 评论(0) 推荐(0) 编辑

导航