`
yjhexy
  • 浏览: 331099 次
  • 性别: Icon_minigender_1
  • 来自: 火星
社区版块
存档分类
最新评论

struts2 与 velocity 整合 探究

阅读更多

我这边引出几个问题。

问题1,struts2 是怎么让 velocity 按照指定的 ResourceLoader 加载 vm 模板的?

 

首先,struts 默认的查找vm模板的路径有两种:

1,以 webapp 为相对路径下面去找

2,从 classpath 下面去找

那么看下面的代码 org.apache.struts2.views.velocity.VelocityManager:

private void applyDefaultConfiguration(ServletContext context, Properties p) {
        // ensure that caching isn't overly aggressive

        /**
         * Load a default resource loader definition if there isn't one present.
         * Ben Hall (22/08/2003)
         */
        if (p.getProperty(Velocity.RESOURCE_LOADER) == null) {
            p.setProperty(Velocity.RESOURCE_LOADER, "strutsfile, strutsclass");
        }

 

这里就指明了  velocity.RESOURCE_LOADER 有两个,一个是 stutsfile, 一个是 strutsclass;

 

然后分别指明了 这两个 resource.loader 的详细参数如下:

  p.setProperty("strutsfile.resource.loader.description", "Velocity File Resource Loader");
            p.setProperty("strutsfile.resource.loader.class", "org.apache.velocity.runtime.resource.loader.FileResourceLoader");
            p.setProperty("strutsfile.resource.loader.path", context.getRealPath(""));
            p.setProperty("strutsfile.resource.loader.modificationCheckInterval", "2");
            p.setProperty("strutsfile.resource.loader.cache", "true");

 

  p.setProperty("strutsclass.resource.loader.description", "Velocity Classpath Resource Loader");
        p.setProperty("strutsclass.resource.loader.class", "org.apache.struts2.views.velocity.StrutsResourceLoader");
        p.setProperty("strutsclass.resource.loader.modificationCheckInterval", "2");
        p.setProperty("strutsclass.resource.loader.cache", "true");

 

于是velocityEngine 引擎在初始化resource.loader 的时候就会初始化这2个loader 了。

 

那么,如果在开发阶段,不希望模板被cache ,能够修改完之后立马看到效果。可以在/WEB-INF/velocity.properties里面加上:

strutsclass.resource.loader.cache = false

strutsfile.resource.loader.cache = false

 

============================================================

问题2,struts2 怎么让 velocity 可以支持 layout ?

struts 2 自身带的velocityResult 是不支持 velocity 的layout的,它直接调用的是一个velocityEngine.如果需要它支持的话,需要仿照 velocity-tools中的

VelocityLayoutServlet 来重写 VelocityResult.

 

源代码请看附件


然后在struts.xml中进行配置

 <package name="babystore" extends="struts-default" abstract="true">
    	<result-types>
    		 <result-type name="velocity" class="com.yajun.babystore.common.struts.VelocityLayoutResult" default="true"/>
    	</result-types>
    </package>
    
	<package name="default" extends="babystore">
		<action name="HelloWorld" class="helloWorldClass">
			<result name="success">/success.vm</result>
		</action>

。。。。。。

 

 

参考: http://www.ibm.com/developerworks/cn/java/j-lo-struts2-velocity/index.html

 

============================================================

 

问题3,struts2 有哪些提供的方便的 tag,如何运用?

struts2 的tag 分为两种:

第一种 Generic Tag:http://struts.apache.org/2.2.1.1/docs/generic-tag-reference.html

第二种 UI Tags :http://struts.apache.org/2.2.1.1/docs/ui-tags.html

 

这些Tag 都是Component的子类如图:


那么这些Component 怎么和velocity ,freemarke 或者其他模板结合的呢? 我这里介绍和velocity结合的方式:

 

先看下图:


 

可以看到在velocity 这个包里面对上面的 component 都有对应的 类支持。

这些类都继承自org.apache.velocity.runtime.directive.Directive 

这个类是用来实现类似velocity 中的 #set 这样的语法的(前面带个#号的那种)

注意到还有个基类:

public abstract class AbstractDirective extends Directive {
    public String getName() {
        return "s" + getBeanName();
    }

 

发现在每个 beanName 前都加了个字符串s 。这就是为什么 velocity的模板中要用 #surl, #stext, #sform 的原因了。看到这段代码,也就不奇怪了。

 

那么知道了上面的东西之后,想看哪些tag 或者我叫做Component 的是常用的,或者怎么用,就看上面的源码吧。

 

 

问题4,struts2 如何支持 velocity-tools 的 toolbox ?

 

在struts.xml里配置

 

<constant name="struts.velocity.toolboxlocation" value="/WEB-INF/toolbox.xml"></constant>

 

然后再WEB-INF/toolbox.xml 下面加上:toolbox.xml

<?xml version="1.0"?>
<toolbox>
	<tool>
		<key>link</key>
		<scope>request</scope>
		<class>
			org.apache.velocity.tools.struts.StrutsLinkTool
     </class>
	</tool>
	<tool>
		<key>msg</key>
		<scope>request</scope>
		<class>
			org.apache.velocity.tools.struts.MessageTool
     </class>
	</tool>
	<tool>
		<key>errors</key>
		<scope>request</scope>
		<class>
			org.apache.velocity.tools.struts.ErrorsTool
     </class>
	</tool>
	<tool>
		<key>form</key>
		<scope>request</scope>
		<class>
			org.apache.velocity.tools.struts.FormTool
     </class>
	</tool>
	<tool>
		<key>tiles</key>
		<scope>request</scope>
		<class>
			org.apache.velocity.tools.struts.TilesTool
     </class>
	</tool>
	<tool>
		<key>validator</key>
		<scope>request</scope>
		<class>
			org.apache.velocity.tools.struts.ValidatorTool
     </class>
	</tool>
</toolbox>

 

问题5,struts 与 velocity 整合以后,有哪些内置的变量可以直接用?

  • req - the current HttpServletRequest
  • res - the current HttpServletResponse
  • stack - the current OgnlValueStack
  • ognl - an instance of OgnlTool
  • ui - a (now deprecated) instance of a ui tag renderer

 

  • 大小: 144.5 KB
  • 大小: 69.5 KB
分享到:
评论

相关推荐

    Struts2+velocity 整合jar包

    Struts2+velocity 整合时所用的jar包 资源目录如下 commons-collections-3.1 commons-digester-2.0 commons-fileupload-1.2.2 commons-lang-2.5 freemarker-2.3.16 ognl-3.0.1 oro-2.0.8 struts2-core-2.2.3.1 ...

    struts2整合velocity

    将Struts2与Velocity整合,可以实现更高效、更灵活的视图渲染。 **1. Struts2框架介绍** Struts2是Apache软件基金会下的开源项目,它是基于MVC设计模式的Java Web框架。它的核心是Action类,负责处理用户的请求,并...

    struts2与velocity集成 实例

    在Struts2与Velocity集成的过程中,首先需要在Struts2的配置文件中指定Velocity作为视图解析器。这通常是在struts.xml文件中添加一个`&lt;result&gt;`标签,并设置类型为`velocity`,如下所示: ```xml &lt;result type="...

    Struts2 整合 velocity最简单工程 最少的jar包

    Struts2 和 Velocity 的整合是Java Web开发中常见的技术组合,用于构建动态、高效的Web应用程序。Velocity 是一个基于模板语言的轻量级视图层框架,而Struts2 是一个强大的MVC(Model-View-Controller)框架。将这...

    Struts+Velocity整合示例(含源码)

    通过阅读源码,我们可以学习如何配置Struts2与Velocity的整合,理解Action如何与Velocity模板交互,以及如何在模板中使用Java对象和方法。此外,还可以了解如何调试和优化这种整合,提升Web应用的开发效率和用户体验...

    velocity+struts2实例,适合开发和整合使用

    整合Struts2和Velocity主要是为了让Struts2的动作类(Action)能够与Velocity模板进行交互。在Struts2的配置文件中,我们需要指定一个Result类型为"velocity",这样当Action执行完毕后,会使用Velocity模板来渲染...

    struts2整合velocity含源码

    整合Struts2和Velocity,首先需要在Struts2的配置文件(struts.xml)中声明Velocity结果类型。然后,在Action类中设置需要传递到视图的数据,这些数据可以通过Struts2的数据绑定自动注入到模型对象中。最后,...

    struts2+Velocity替换jsp项目源码

    将Velocity与Struts2整合,可以将Velocity作为视图层,实现更清晰的职责分离。开发者在Action中处理业务逻辑,然后将数据模型传递给Velocity模板,由Velocity负责渲染页面。这种方式减少了Action与视图之间的耦合,...

    struts2+velocity

    在Struts2与Velocity整合的例子中,可能会用到预处理或后处理的拦截器。 6. **Action与视图的通信**:Struts2使用ValueStack管理Action上下文中的对象,这些对象可以直接在Velocity模板中通过OGNL表达式访问。例如...

    Struts2与Velocity模板

    Struts2 与 Velocity 模板 Velocity 是一种基于 JAVA 的模板引擎,开发人员使用简单的模板语言就可以快速开发显示层,它使得显示层与程序代码分离。在 Struts2 框架中,Velocity 模板引擎可以与 Struts2 集成,实现...

    mongo集成spring struts2 json velocity

    在"mongo集成spring struts2 json velocity"这个项目中,我们将看到如何将这些技术整合到一起,创建一个功能丰富的Web应用程序。 首先,MongoDB的集成意味着项目会利用其NoSQL特性和文档存储的优势。Spring Data ...

    Struts2+velocity jar

    在Struts2与Velocity结合使用时,通常会将Velocity模板作为Action执行后的Result,这样Action处理完业务逻辑后,会将控制权交给Velocity模板来生成最终的HTML响应。开发者可以利用Struts2的Action和Interceptor来...

    Struts2 与 Velocity 实例

    在实际开发中,Struts2 通常与 Velocity 结合使用,Struts2 负责业务逻辑和请求处理,Velocity 负责生成动态内容。通过将 Velocity 模板嵌入到 Struts2 的结果中,可以构建出灵活且易于维护的Web应用。在提供的...

    struts2+velocity jar包

    Struts2和Velocity是两个非常重要的Java开源框架,它们在Web开发中有着广泛的应用。Struts2是一个基于MVC(Model-View-Controller)设计模式的框架,它为构建Java Web应用程序提供了强大的支持。而Velocity则是一个...

    struts2 velocity

    Struts2与Velocity的整合主要体现在Action的返回结果类型上。当一个Action执行完毕后,可以通过配置Action的result来指定使用哪个Velocity模板来生成响应。例如,你可以设置`&lt;result type="velocity"&gt;/WEB-INF/...

    maven构建spring struts2 ibatis velocity小实例

    《基于Maven的Spring、Struts2、iBatis与Velocity整合实践》 在Web开发领域,Spring、Struts2、iBatis和Velocity是四个非常重要的组件,它们各自承担着不同的职责,共同构建出高效、灵活的Web应用程序。本实例以...

    struts2整合velocity的6个jar包

    commons-fileupload-1.2.1.jar commons-io-1.3.2.jar commons-logging-1.0.4.jar freemarker-2.3.13.jar struts2-core-2.1.6.jar xwork-2.1.2.jar

    Velocity语法以及整合struts2总结

    【Velocity语法以及整合struts2总结】 Velocity是一个开源的Java模板引擎,它是Apache软件基金会的Jakarta项目的一部分。Velocity将HTML代码与业务逻辑分离,使得开发者可以专注于内容和设计,而不用关心数据如何...

    struts2+spring+velocity扩展实例V1版本

    在这个"struts2+spring+velocity扩展实例V1版本"中,我们可以看到这三个框架的集成与应用。 首先,Struts2是一个基于MVC(Model-View-Controller)设计模式的Java Web框架,它的主要职责是处理用户的请求,并将其...

Global site tag (gtag.js) - Google Analytics