【发布时间】:2021-03-21 20:09:55
【问题描述】:
我得到 404 未找到。我做错了什么?
@GetMapping(PRIVACY_POLICY_ENDPOINT)
public String getPrivacyPolicyPage() {
return "/privacyPolicy.ftlh";
}
路径:
src/main/resources/templates/privacyPolicy.ftlh
分级:
implementation "org.springframework.boot:spring-boot-starter-freemarker"
implementation "org.springframework.boot:spring-boot-starter-web"
我尝试设置属性,但没有帮助
freemarker:
enabled: true
template-loader-path: classpath:/templates
suffix: .ftlh
【问题讨论】:
标签: java spring-boot spring-mvc freemarker