前提・実現したいこと
spring boot, thymeleafでアプリを作っています。
Eclipseからアプリを起動すると正常に動いていますが、jarから実行するとエラーになる箇所があります。
何か解決につながる情報ないでしょうか。
発生している問題・エラーメッセージ
template might not exist or might not be accessible by any of the configured Template Resolvers
該当のソースコード
html
1・HTML 2<form action="/****/itemlist/searchByKeyWord"> 3 <div> 4 <input type="text" name="inputKeyword" /> 5 <button type="submit">検索</button> 6 </div> 7</form>
java
1@Controller 2@RequestMapping(value = "/itemlist") 3public class Itemlist { 4 @RequestMapping(value = "/searchByKeyWord") 5 public String searchByKeyWord(@ModelAttribute(name = "inputKeyword") String keyword,Model model) { 6 return "itemlist/Itemlist"; 7 } 8}
上記のようなソースで、パスだけ違う全く同じページが2つある状態で、片方だけエラーが出る状態です
src/java/resources/templates配下にhtmlは配置しています。
補足情報(FW/ツールのバージョンなど)
mavenでビルドしてます。
あなたの回答
tips
プレビュー