guhong
2018-08-27 15:18
在配置文件中也配置了后缀
有前辈解决了这个问题么?
我也是,访问路径带上.ftl就会404,其他正常。不知道是不是freemarker的版本问题。我的springboot用的2.0.7的。
确定是版本问题吗?
我是因为没有引入freemarker依赖
<!-- 引入 freemarker 模板依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
我也碰到同样的问题了,楼主解决了吗
和教程里的目录结构、代码都一样
@Controller
@RequestMapping("/ftl")
public class FreemarkerController {
@Autowired
private Resource resource;
@RequestMapping("/index")
public String index(ModelMap map) {
map.addAttribute("resource", resource);
return "freemarker/index";
}
@RequestMapping("/center")
public String center() {
return "freemarker/center/center";
}
}
源码方便贴出来吗
SpringBoot开发常用技术整合
102171 学习 · 508 问题
相似问题