- 1、本文档共11页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Spring MVC 整合 Freemarker 1
一、新建web项目 SpringMvcAndFreemarker 1
二、将jar包引入项目 1
项目准备jar包 1
三、配置web.xml 1
四、在src下添加applicationContext.xml文件 2
五、添加spring MVC的servlet配置文件 3
六、创建控制器Controller类 4
七、将控制器交给Spring MVC进行拦截 5
Spring MVC 整合 Freemarker
一、新建web项目 SpringMvcAndFreemarker
二、将jar包引入项目
项目准备jar包
freemarker 使用的 freemarker-2.3.19.jar
依赖包commons-logging.jar
三、配置web.xml
配置如下:
?xml version=1.0 encoding=UTF-8?
web-app version=2.5
xmlns=/xml/ns/javaee
xmlns:xsi=/2001/XMLSchema-instance
xsi:schemaLocation=/xml/ns/javaee
/xml/ns/javaee/web-app_2_5.xsd
!-- Spring 上下文参数 --
context-param
param-namecontextConfigLocation/param-name
param-valueclasspath:applicationContext.xml/param-value
/context-param
!-- Spring 容器启动器 --
listener
listener-classorg.springframework.web.context.ContextLoaderListener/listener-class
/listener
servlet
servlet-namespringmvc/servlet-name
servlet-classorg.springframework.web.servlet.DispatcherServlet/servlet-class
load-on-startup1/load-on-startup
/servlet
!--为DispatcherServlet建树映射 --
servlet-mapping
servlet-namespringmvc/servlet-name
url-pattern/*/url-pattern
/servlet-mapping
welcome-file-list
welcome-fileindex.jsp/welcome-file
/welcome-file-list
/web-app
四、在src下添加applicationContext.xml文件
src/applicationContext.xml
接着在内容中添加Freemarker的支持配置,配置如下:
?xml version=1.0 encoding=UTF-8?
beans xmlns=/schema/beans
xmlns:xsi=/2001/XMLSchema-instance
xsi:schemaLocation=/schema/beans
/schema/beans/spring-beans-2.5.xsd
!-- Freemarker配置 --
bean id=freemarkerConfig class=org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer
property name=templateLoaderPath value=/WEB-INF/view//property
property name=freemarkerSettings
props
prop key=template_update_delay0/prop
prop key=default_encodingUTF-8/prop
prop key=number_format0.##########/prop
prop key=datetime_formatyyyy-MM-dd HH:mm:ss/prop
prop key=classic_compatibletrue/prop
prop key=template_exception_handlerignore/p
文档评论(0)