Подтвердить что ты не робот

Как читать файлы шаблонов Freemarker из папки src/main/resources?

Как получить доступ к моим файлам freemarker (*.ftl), хранящимся в моей папке src/main/resources из моего кода (Spring Приложение для загрузки)?

Я попробовал следующее

freemarker.template.Configuration config = new Configuration();
configuration.setClassForTemplateLoading(this.getClass(), "/resources/templates/");

и получить следующее исключение

freemarker.template.TemplateNotFoundException: Template not found for name "my-template.ftl".
4b9b3361

Ответ 1

Корень пути к классам src/main/resources, измените путь на

configuration.setClassForTemplateLoading(this.getClass(), "/templates/");