猿问

thymeleaf和spring集成后Spring EL表达式无效

表达式无法被解析的原因是什么?

Controller

https://img1.mukewang.com/5cb816760001fe7708000611.jpg

页面标签

https://img.mukewang.com/5cb8167800019fe603590157.jpg

显示内容


慕运维8079593
浏览 638回答 1
1回答

largeQ

Spring的Controller方法里面 Model是通过方法参数注入进去的类似于这样:@RequestMapping("welcome")public String welcome(Model model) {&nbsp; &nbsp; model.addAttribute("whatever", new SomeObject());&nbsp; &nbsp; return "welcome";}如果使用ModelAndView 要这样@RequestMapping("welcome")public ModelAndView welcome() {&nbsp; &nbsp; ModelAndView mv = new ModelAndView("welcome");&nbsp; &nbsp; mv.addObject("whatever", new SomeObject());&nbsp; &nbsp; return mv;}另外View里难道不是应该这样写嘛<tr>&nbsp; <th th:text="#{whatever}">Name</th>&nbsp; <th th:text="#{whatever}">Price</th></tr>建议以后问问题 代码不要截图 用文本 最好附带完整源码放在git仓库里。
随时随地看视频慕课网APP

相关分类

Java
我要回答