今学ぶJava(4) - Spring Boot + Thymeleaf
参考サイト
はいエラー
HTTP Status 500 - Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template "/hello", template might not exist or might not be accessible by any of the configured Template Resolvers
参考サイトと寸分も違わないのに、ずいぶんと悩まされた。 以下のようにコマンドを打ちまくって綺麗にしたりするも解決せず。
> mvn clean > mvn install > mvn compile > mvn package
これ、全部やる必要ないと思うんだけど使い分けどうするんだろう?
mvn package
なんて install と compile 包含してそうだけど。
で、ここを見てたら気づいた。
http://qiita.com/hiroshi_maz/items/c0728996edd94c358c58
誤: return "/hello"
正: return "hello"
動いた。