SpringBoot学习笔记之JSP与freemarker支持

1、SpringBoot 支持JSP
先在pom.xml加入依赖
org.apache.tomcat.embed
tomcat-embed-jasper
provided
javax.servlet
jstl

然后在application.properties文件中增加如下配置
# 页面默认前缀目录
spring.mvc.view.prefix=/WEB-INF/jsp/
# 响应页面默认后缀
spring.mvc.view.suffix=.jsp

测试类请见 com.vk.liyj.controller.LiyjController 类
注意:LiyjController类中使用@Value读取了application.properties里的文件
@Value("${application.value:Hello liyj}")
private String value="";
application.value表示在application.properties中的key,冒号后面的值是默认值,如果在资源文件中无法读取到值则返回默认值 。

2、Springboot支持freemarker
1)、先在pom.xml中加入依赖
org.springframework.boot
spring-boot-starter-freemarker
2)、配置application.properties
spring.freemarker.allow-request-override=false
spring.freemarker.cache=true
spring.freemarker.check-template-location=true
spring.freemarker.charset=UTF-8
spring.freemarker.content-type=text/html
spring.freemarker.expose-request-attributes=false
spring.freemarker.expose-session-attributes=false
spring.freemarker.expose-spring-macro-helpers=false
测试类请见 com.vk.liyj.controller.LiyjController 类freemarker方法。
执行SpringBootSampleApplication中的main方法,访问 http://localhost:8080/web/freemarker,看到下图信息
SpringBoot学习笔记之JSP与freemarker支持_第1张图片

相关源码下载:http://download.csdn.net/download/liyuejin/9986140



你可能感兴趣的:(Spring,boot)