初心者です。SpringBoot2でtomcat起動し画面遷移すると以下のエラーとなってしまいます。
なんとなく、htmlが悪そう、というところまでわかっているのですが、
ここからどう見ていったらよいかわからず。。
気になる点として、Springbootを1系→2系にあげたタイミングで
thymeleafのバージョンをあげる必要がありそう、とみたので、
pom.xmlではthymeleafのバージョン3を指定していますがそれ以外の対応はしていないです。
htmlの書き換えが必要になったりするのでしょうか?
また、その場合、何を頼りに修正していったらよいでしょうか?
ログは文字数制限で全文のせられないため、部分的に抜粋しています。
2021-08-16 13:14:18.530 [http-nio-8080-exec-2] ERROR org.thymeleaf.TemplateEngine - [THYMELEAF][http-nio-8080-exec-2] Exception processing template "xxxx/xxxx/list": An error happened during template parsing (template: "class path resource [templates/xxxx/xxxx/list.html]") org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/xxxx/xxxx/list.html]") at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) ・ ・ ・ Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "#helper.testxxxxx(info.serviceStatus)" (template: "xxxx/xxxx/list" - line 31, col 12) ・ ・ Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "#helper.testxxxxx(info.serviceStatus)" (template: "xxxx/xxxx/list" - line 31, col 12) ・ ・ Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1011E: Method call: Attempted to call method testxxxxx(java.lang.String) on null context object ・ ・ 2021-08-16 13:14:18.536 [http-nio-8080-exec-2] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/xxxx/xxxx/list.html]")] with root cause org.springframework.expression.spel.SpelEvaluationException: EL1011E: Method call: Attempted to call method testxxxxx(java.lang.String) on null context object ・ ・
回答1件
あなたの回答
tips
プレビュー