Thymeleaf配置basePath
Posted 永旗狍子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thymeleaf配置basePath相关的知识,希望对你有一定的参考价值。
Thymeleaf配置basePath解决路径问题
导入Thymeleaf依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
在yml中设置不要缓存
spring:
thymeleaf:
cache: false
使用Thymeleaf前,最好先导入其名称空间:xmlns:th,不导入会没有提示,但不影响使用
<html lang="en" xmlns:th="http://www.thymeleaf.org/">
为了解决路劲问题一般会在页面head头信息中添加如下标签:
thymeleaf添加如下:
<base th:href=“${#request.getContextPath()}+‘/‘“>
<head>
<meta charset="UTF-8">
<title>Title</title>
<base th:href="${#servletContext.getContextPath()+'/'}">
</head>
添加了以上标签,如下代码所示:
<!--<form method="post" action="http://localhost:8080/emp/addEmp">-->
<!-- 注意:使用了base标签之后,页面中的URL前面不需要加 / 。比如下方是正确写法:-->
<form method="post" action="emp/addEmp">
<table>
<tr>
<td>姓名</td>
<td>
<input type="text" name="ename" value="Admin">
</td>
</tr>
<tr>
<td>工资</td>
<td>
<input type="text" name="sal" value="10000">
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="提交">
</td>
</tr>
</table>
</form>
以上是关于Thymeleaf配置basePath的主要内容,如果未能解决你的问题,请参考以下文章
Spring MVC 3.2 Thymeleaf Ajax 片段
使用片段时 Intellij 无法正确识别 Thymeleaf 模型变量