У меня есть многомодульная структура проекта, как:
- application (parent module)
--- boot (web-app)
----- src/main/resources/templates/layout.html
---- todo (jar file)
----- src/main/resources/templates/home.html
и на моем контроллере:
@RequestMapping(value = "/home")
public String home() {
return "todo/home";
}
Я получаю сообщение об ошибке, как показано ниже:
Error resolving template "todo/home", template might not exist or
might not be accessible by any of the configured Template
Resolvers]
Нужна ли конфигурация, чтобы настроить что-то специально для весны для поиска шаблонов на пути к классам?