随笔 - 3
文章 - 0
评论 - 0
阅读 -
103
10 2022 档案
spring整合mybatis
摘要:1.pom.xml中添加依赖 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.2.16.RELEASE</version> </depende
阅读全文
thymeleaf基础学习
摘要:Thymeleaf 1.标准表达式 ${...}:变量表达式 *{...}: 选择表达式 #{...} : 消息表达式 @{...}: 连接表达式 <img th:src="@{url}"> ~{...} : 片段表达式 2.基础语法 文本标签 th:text/th:utext 1.th:tex
阅读全文