摘要:
当th:with被处理,firstPer变量创建一个局部变量和变量添加到map自上下文,以便它是用于评估和其他上下文中声明的变量从开始,但只有包含< div >标记的范围内。 <div th:with="firstPer=${persons[0]},secondPer=${persons[1]}"> 阅读全文
摘要:
关于thymeleaf th:replace th:include th:insert 的区别 th:insert :保留自己的主标签,保留th:fragment的主标签。 th:replace :不要自己的主标签,保留th:fragment的主标签。 th:include :保留自己的主标签,不要 阅读全文
摘要:
结论: Mock将URL的参数和通过使用param添加的参数添加到request中的parameter中(url参数) 而将content内容、类型并没有进行解析,直接添加到request的content中(body) 阅读全文
摘要:
自己的代码魔改太多起不到简单易懂的效果,我还是直接上原来的人的代码吧。 代码结构如下: 1、pom.xml中加入以下依赖: <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</ 阅读全文
摘要:
有以下接口: public interface EmployeeService { public EmployeeDto getEmployeeById(Long id); } 有两个实现类: @Service("service") public class EmployeeServiceImpl 阅读全文
摘要:
解释: SELECT case 如果 when sex='1' then '男' sex='1',则返回值'男' when sex='2' then '女' sex='2',则返回值'女' else 0 其他的返回'其他’ end 结束 from sys_user 整体理解: 在sys_user表中 阅读全文
摘要:
transient使用小结 1)一旦变量被transient修饰,变量将不再是对象持久化的一部分,该变量内容在序列化后无法获得访问。 2)transient关键字只能修饰变量,而不能修饰方法和类。注意,本地变量是不能被transient关键字修饰的。变量如果是用户自定义类变量,则该类需要实现Seri 阅读全文