2021-2-4学习笔记org.thymeleaf.TemplateEngine :Exception processing template “index“: An error happened

org.thymeleaf.TemplateEngine : [THYMELEAF][http-nio-8080-exec-6] Exception processing template “index”: An error happened during template parsing

org.thymeleaf.TemplateEngine : 
[THYMELEAF][http-nio-8080-exec-6] Exception processing template "index": An error happened 
during template parsing (template: "class path resource [templates/index.html]")

今天遇到这个错误,在我form提交到url添加用户的时候,仔细检查过后发现controller部分没有问题,没有网上说的种种问题,后来仔细看报错日志发现;

rg.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "user.user_name" (template: "index" - line 75, col 17)

由此可以看出在index.html中是有通过thymeleaf传递的用户数据的,而添加用户返回这个页面之后没有传递对应的model对象,所以会报错,这个错误本身就是说thymeleaf没法正确的解析这个页面模型。网页的报错如下:
2021-2-4学习笔记org.thymeleaf.TemplateEngine :Exception processing template “index“: An error happened_第1张图片

可以考虑是否需要传值的地方进行了传值,或者跳转到别的页面,或者用ajax传值不用form

你可能感兴趣的:(学习笔记,java)