在使用JFinal3.2的时候发现,JFinal提供的Enjoy Template Engine这个模版工具挺好用,就想集成到SpringMVC中使用。首先,先按照使用文档操作一番。把jsp或freemarker等模版的bean配置替换成enjoy的配置;
JSP模版
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/view/" />
<property name="suffix" value=".jsp" />
</bean>
Freemarker模版
<!-- freemarker的配置 -->
<bean id="freemarkerConfigurer"
class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
<property name="templateLoaderPath" value="/view/" />
<property name="defaultEncoding" value="UTF-8" />
<property name="freemarkerSettings">
<props>
<prop key="template_update_delay">10</prop>
<prop key="locale">zh_CN</prop>
<prop key="datetime_format">yyyy-MM-dd HH:mm:ss</prop>
<prop key="date_format">yyyy-MM-dd</prop>
<prop key="number_format">#.##</prop>
</props>
</property>
</bean>
<!-- FreeMarker视图解析 如返回userinfo。。在这里配置后缀名ftl和视图解析器。。 -->
<bean id="viewResolver"
class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.freemarker.FreeMarkerView" />
<property name="suffix" value=".html" />
<property name="contentType" value="text/html;charset=UTF-8" />
<property name="exposeRequestAttributes" value="true" />
<property name="exposeSessionAttributes" value="true" />
<property name="exposeSpringMacroHelpers" value="true" />
<property name="requestContextAttribute" value="request"/>
</bean>
替换为enjoy的模版
<bean id="viewResolver" class="com.jfinal.template.ext.spring.JFinalViewResolver">
<property name="devMode" value="true" />//详情见官网
<property name="sessionInView" value="true" />//详情见官网
<property name="exposeRequestAttributes" value="true" />//开启这个属性,enjoy才能读取request.setAttribute()中的参数
<property name="prefix" value="/view/" />
<property name="suffix" value=".html" />
<property name="order" value="1" />
<property name="contentType" value="text/html;charset=utf-8" />
</bean>
此时,enjoy的基本配置已经完成,可以使用。但会突然间发现,无法像jsp或freemarker那样简单的获取到contextPath这个参数。翻看enjoy的使用手册,发现enjoy提供了一个addSharedObject方法供我们添加参数。个人觉得不应使用拦截器,毕竟只是一个固定参数。我是想在项目加载完成的时候直接加载contextPath这个参数就好。以前一直以为只用在request里面才有这个参数,现在发现容器的ServletContextListener与SpringMVC提供的ApplicationListener<ContextRefreshedEvent>都可以获取到contextPath。毕竟在springMVC中在非Controller获取到request还是比较难的,试了好久都拿不到。首先贴上ServletContextListener的代码。使用ServletContextListener首先要在web.xml中加入listener
<listener>
<listener-class>com.springmvc.handler.EnjoyCore</listener-class>
</listener>
package com.springmvc.handler;
public class EnjoyCore implements ServletContextListener{
@Override
public void contextDestroyed(ServletContextEvent arg0) {
// TODO Auto-generated method stub
}
@Override
public void contextInitialized(ServletContextEvent arg0) {
JFinalViewResolver.engine.addSharedObject("ctx",arg0.getServletContext().getContextPath());
System.out.println("JFinal-enjoy固定参数加载完成。");
}
}
若使用ApplicationListener<ContextRefreshedEvent>首先要在配置enjoy的xml的最后加多一行:
<bean id="enjoycore" class="com.springmvc.handler.EnjoyCore"></bean>
package com.springmvc.handler;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import com.jfinal.template.ext.spring.JFinalViewResolver;
public class EnjoyCore implements ApplicationListener<ContextRefreshedEvent>{
@Override
public void onApplicationEvent(ContextRefreshedEvent event) {
//if(event.getApplicationContext().getParent()==null)//网上说要这个判断不要重复执行但是我测试了一下,发现这个方法本来就不会重复执行,而且getParent也不会为空
JFinalViewResolver.engine.addSharedObject("ctx",event.getApplicationContext().getApplicationName());
}
}
最后,前端只要#(ctx)就可以获取到contextPath了。
转载于:https://my.oschina.net/u/2349928/blog/1527391
分享到:
相关推荐
SpringMVC ---- HelloWorld ---- 代码 SpringMVC ---- HelloWorld ---- 代码 SpringMVC ---- HelloWorld ---- 代码 SpringMVC ---- HelloWorld ---- 代码 SpringMVC ---- HelloWorld ---- 代码 SpringMVC ---- Hello...
基于SpringMVC Mybatis Shiro Redis 的权限管理系统,该系统已经部署到线上,线上访问地址:http://shiro.itboy.net,登录账号:admin 密码:sojson,,详细教程参考sojson.com/shiro
在本项目中,我们主要探讨的是如何在SpringMVC框架下整合bootstrap-table,实现数据的初始化、自定义搜索功能,并且结合弹出模态框来展示详细信息。这是一个典型的前后端分离的应用场景,有助于提高用户体验并优化...
《easyUI与SpringMVC整合实现Tree组件操作详解》 在Web开发中,前端界面的交互性和用户体验至关重要,其中树形结构(Tree)组件是一种常用的数据展示方式,它能够清晰地展示层次关系,便于用户浏览和操作。EasyUI是...
在IT行业中,Spring、SpringMVC和MyBatis是三个非常重要的开源框架,它们在企业级Web应用开发中被广泛使用。Spring作为一个全面的后端应用程序框架,提供了依赖注入(DI)和面向切面编程(AOP)等功能,极大地简化了...
SpringMVC 和 MyBatis 是两个非常流行的 Java 开发框架,它们在企业级 Web 应用开发中被广泛使用。SpringMVC 作为 Spring 框架的一部分,主要用于处理 HTTP 请求,实现 MVC(模型-视图-控制器)设计模式。而 MyBatis...
SpringMVC4教程-.pptx SpringMVC4教程-.pptx SpringMVC4教程-.pptx SpringMVC4教程-.pptx SpringMVC4教程-.pptx
开发者可以通过解压并研究这个文件,了解项目的具体结构和实现细节,学习如何在实际开发中应用SpringMVC和SpringBoot。 综上所述,SpringMVC精品资源--vans项目是一个基于SpringBoot的高效后端开发框架,它融合了...
《SpringMVC-Mybatis-Shiro-Redis整合实践详解》 在现代Web开发中,SpringMVC、Mybatis、Shiro以及Redis等技术是构建高效、安全、可扩展的Web应用的重要组件。本文将深入探讨这些技术的集成与应用,以"SpringMVC-...
"springMVC-3.0-file-upload.rar" 包含了一个示例,展示了如何在Spring MVC应用中集成文件上传功能,这个例子的描述表明它是基于注解驱动的,这意味着我们将使用如`@Controller`、`@RequestMapping`等注解来定义控制...
【标题】"SpringMVC精品资源--JAX-RS & SpringMVC supported gradle bui.zip" 提供的是一份关于使用Gradle构建支持JAX-RS和SpringMVC的项目资源。这涉及到两个关键的技术栈:SpringMVC,一个用于构建Web应用程序的...
SpringMVC文件上传war包
《SpringMVC从入门到精通》SpringMVC使用hibernate-validator验证需要的jar包 包含hibernate-validator-5.1.0.Final hibernate-validator-annotation-processor-5.1.0.Final,等等都有
【标题】:SpringMVC精品资源--使用javaconfig的方式整合SpringMVC+Mybatis+SpringSecurity 【描述】:这个资源包聚焦于Java开发中的Web应用程序集成,通过使用javaconfig而非传统的XML配置来整合SpringMVC、...
以下是对"springMVC整合cxf所需的jar包"这一主题的详细解释。 1. **Spring MVC**: Spring MVC是Spring框架的一部分,提供了一种模型-视图-控制器架构来构建Web应用。它允许开发者通过注解进行配置,简化了代码并...
Spring4.2 + SpringMVC4.2 + Mybatis3.3 + Mybatis-Plus(Mybatis的插件,封装了CRUD和分页查询等功能) + log4j + shrio权限框架,可直接用于后台的开发。
开发者可以从中学习到如何配置SpringMVC和Mybatis的整合,如在Spring的配置文件中定义数据源、SqlSessionFactoryBean以及Mybatis的Mapper接口和XML映射文件。此外,还可能涉及到SpringMVC的拦截器、视图解析器、异常...
【描述】"maven-springmvc-mybatis -memcached"描述了一个使用Maven构建工具、SpringMVC作为前端控制器、MyBatis作为持久层框架,并结合Memcached作为缓存服务的Web应用开发环境。这个项目旨在展示如何将这些组件...
在这个项目"springmvc-mongodb-maven结合"中,开发者整合了这三个工具来创建一个运行良好的Java Web应用。以下是关于这些技术及其结合使用的关键知识点: **SpringMVC**: SpringMVC是Spring框架的一个模块,专门...
【标题】中的“SpringMVC精品资源--使用Maven构建,整合Dubbo+Zookeeper+SpringMVC+Spring”表明这是一个关于使用SpringMVC技术,结合Maven项目管理工具,以及Dubbo服务治理框架和Zookeeper分布式协调服务的综合教程...