thymeleaf用th:text不能获取到model的值,提示为null

thymeleaf用th:text不能获取到model的值,提示为null;
freemarker也是提示为null;
但能取session的值,th标签遍历也不能遍历,json都能正常显示没问题。

controller

图片说明

html

图片说明

配置

thymeleaf:
    cache: false
    checktemplatelocation: true 
    enabled: true 
    encoding: UTF-8 
    mode: HTML5 
    prefix: classpath:/templates/ 
    suffix: .html 

我也遇到了这个问题 调试了很久之后发现是我访问的时候直接访问了localhost:8080,要访问localhost:8080/index才会显示,不知道你是不是一样的情况

你给p标签套一个div 再加上th:object试试?就像这样
图片说明

这个方法不行还可以这样
图片说明

大哥,我取到的model值也是为null,为啥呀?

我也是

看一下项目架构,是不是Controller文件和启动类是同一级