Как сменить каталог templates в Thymeleaf?

Операционка Windows. В приложении структура каталогов:

java
├─ resources
│  └─ templates
└─ webapp
   ├─ WEB-INF   
   └─ templates

По умолчанию Thymeleaf настроен на

└─ resources
   └─ templates

Как мне сменить каталог templates в Thymeleaf на

└─ webapp
   ├─ WEB-INF   
   └─ templates

Прописал настройки в пропертях:

sping:
  thymeleaf:  
    prefix: classpath:/webapp/templates/

не работает, все равно пишет:

Cannot find template location: classpath:/webapp/templates/

Ответы (0 шт):