为了账号安全,请及时绑定邮箱和手机立即绑定

sts中thymeleaf中显示不出来

我在sts中使用thymeleaf页面起不了作用呢

application中的配置

spring.thymeleaf.prefix=classpath:/templates/

spring.thymeleaf.suffix=.html

spring.thymeleaf.mode=HTML5

spring.thymeleaf.encoding=UTF-8

spring.thymeleaf.content-type=text/html

spring.thymeleaf.cache=false

html页面

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8"/>

<title>Insert title here</title>

</head>

<body>

<h1 th:text="${hello}">Hello</h1>

</body>

</html>

控制器

@Controller

@EnableAutoConfiguration

public class StudentController {

@RequestMapping("/f")

public String free() {

Map<String,Object> map = new HashMap<String, Object>();

map.put("hello","user1");

return "freemarker/index";

}

}

}

页面显示不了user1

欢迎小伙伴速速解答



正在回答

1 回答

你页面中可以获取Map中的值,页面一般应该是获取request域中的,在返回到页面不重定向的情况下,重定向的情况,request域中的值会获取不到,你这个直接返回到页面,没有把值放到request域中,或者放入model中也可

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

sts中thymeleaf中显示不出来

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信