今学ぶJava(4) - Spring Boot + Thymeleaf

f:id:syonx:20150506144739p:plain

参考サイト

はいエラー

f:id:syonx:20150506144744p:plain

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

f:id:syonx:20150506145831p:plain

誤: return "/hello"
正: return "hello"

動いた。