追逐的明天
2019-03-01 17:50
在pom.xml文件中添加了
<!-- 引入freemarker模板依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency>
在配置文件中也添加了相关配置
controller中的代码
项目结构是这样的
项目访问的结果是
帮忙看看,谢谢
在controller中,你是使用了RestController注解,相当于是Controller和ResponseBody一起使用了,默认会将返回值按照json格式解析;这里是整合freemarker是spring mvc的方式,使用Controller加上两个RequestMapping即可,所以是你的注解使用错了
SpringBoot开发常用技术整合
102171 学习 · 508 问题
相似问题