`
PointOnLine
  • 浏览: 25119 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

struts2.0 升级到 struts2.1.2 更改的配置项

    博客分类:
  • java
阅读更多
Troubleshooting guide migrating from Struts 2.0.x to 2.1.x

<!--[if !vml]--><!--[endif]-->About the Migration guide

This guide describes how to migrate an existing Struts 2.0.x application to Struts 2.1.x. It is intended to be read from top to bottom but you may skip-ahead to known problems and common exceptions. Please edit this page or provide comments if you encounter additional issues.



Update Dependencies

Update your project dependences to use struts2-core-2.1.x and the plugins struts2-core-2.1.x.

<!--[if !vml]--><!--[endif]-->
There have been significant changes to the Configuration API between 2.0 and 2.1. Third-party plugins for 2.0 may not be compatible with 2.1.x.


Maven users can update their project's pom.xml to reference the new core and plugin versions. Ensure no dependencies in the freemarker groupId are used as the latest version used by Struts is now under the org.freeemarker groupId and will cause classpath conflicts.

If you need releases not considered General Availability you can use a staging repository where they are usually available:

<repositories>
    <repository>
      <id>struts2.1.2-staging</id>
      <name>Struts 2.1.2 staging repository</name>
      <layout>default</layout>
      <url>http://people.apache.org/builds/struts/2.1.2/m2-staging-repository/</url>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>

Non-Maven users can can download the jars and dependencies in a Distribution 2.1.2 <!--[if !vml]--><!--[endif]-->

<!--[if !vml]--><!--[endif]-->
DELETE OLD VERSIONS NOW: It's essential that old versions of the jars are removed from your project as well as the deployment directories. Don't trust your IDE to delete unused versions.
eg. Your application is now be dependent on xwork-2.1.x, not xwork-2.0.x. Ensure xwork-2.0.x is completely removed or you will encounter compile-time and run-time exceptions.


Update Custom Type Converters

If your project implements custom type converters you may need to change the imports statements to use the com.opensymphony.xwork2.conversion package. Failing to do so will cause a compile-time error.

Before:

import com.opensymphony.xwork2.util.TypeConversionException;

After:

import com.opensymphony.xwork2.conversion.TypeConversionException;

Update struts.xml Configuration

Results and Interceptors have been renamed to use camelCase instead of hyphenated names (eg. now redirectAction instead of redirect-action).
Review all custom interceptor stacks, interceptor refs and results in struts.xml and remove the hyphen.

Interceptors:

From
To

external-ref
externalRef

model-driven
modelDriven

static-params
staticParams

scoped-model-driven
scopedModelDriven

servlet-config
servletConfig

token-session
tokenSession


Results:

From
To

redirect-action
redirectAction

plaintext
plainText




<!--[if !vml]--><!--[endif]-->
Forgetting to rename an interceptor or result reference will prevent your WebApp from starting. The following is a typical stacktrace for an invalid result type.

SEVERE: Exception starting filter struts2
Unable to load configuration. - action - file:/home/giaz/code/.metadata/.plugins/
            com.genuitec.eclipse.easie.tomcat.myeclipse/tomcat/webapps/webui/WEB-INF/classes/struts.xml:39:98
        at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:58)
        at org.apache.struts2.dispatcher.Dispatcher.init_PreloadConfiguration(Dispatcher.java:370)
...
Caused by: Error building results for action ScheduleJob in namespace  - action - file:/home/giaz/code/.metadata/.plugins/
             com.genuitec.eclipse.easie.tomcat.myeclipse/tomcat/webapps/webui/WEB-INF/classes/struts.xml:39:98
        at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.addAction(XmlConfigurationProvider.java:372)
        ... 30 more
Caused by: There is no result type defined for type 'redirect-action' mapped with name 'success' - result -

<!--[if !supportLineBreakNewLine]-->
<!--[endif]-->








Migrate plugin configuration
Tiles 2
If you use the Tiles 2 plugin, check your tiles.xml file(s) to ensure they contain a DOCTYPE.

<!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN"       "http://tiles.apache.org/dtds/tiles-config_2_0.dtd"><tiles-definitions>...<!--[if !vml]--><!--[endif]-->
A missing DOCTYPE in your Tiles configuration will prevent your WebApp from starting. The following is a typical stacktrace for a missing Tiles DOCTYPE.

INFO: Initializing Tiles2 container. . .Nov 22, 2007 11:38:11 AM org.apache.commons.digester.Digester errorSEVERE: Parse Error at line 2 column 19: Document is invalid: no grammar found.org.xml.sax.SAXParseException: Document is invalid: no grammar found.

Ajax Theme / Dojo
If your WebApp uses the ajax theme bundled with Struts 2.0 (ajax tags), you need to update every pageas the Dojo support has been moved into a separate plugin and tag library.

1. Add the Dojo plugin as a new dependency for your project

<dependency>        <groupId>org.apache.struts</groupId>        <artifactId>struts2-dojo-plugin</artifactId>        <version>2.1.1</version>    </dependency>2. Modify ALL pages that use the ajax theme to use the Dojo tag library.

For each page there are three tasks to complete:

reference the new Dojo tag library
update the head tag
update all ajax themed tags
check inline scripts
check inline widgets
<!--[if !vml]--><!--[endif]-->
If this is a major undertaking for your application, it's recommended to modify, test and validate each page one at a time.


Reference the new Dojo Tag Library
Reference the new taglib in your JSP or FTL pages.
Before

<%@ page contentType="text/html; charset=UTF-8" %><%@ taglib prefix="s" uri="/struts-tags"%>After

<%@ page contentType="text/html; charset=UTF-8" %><%@ taglib prefix="s" uri="/struts-tags"%><%@ taglib prefix="sx" uri="/struts-dojo-tags" %><!--[if !vml]--><!--[endif]-->
Many pages will require both the core and dojo tags. The sx: prefix is preferred for the Dojo tags.


Update the head tag
Review the new attributes of the new head <!--[if !vml]--><!--[endif]--> tag. You need to decide which values for the cache, compressed, parseContent and extraLocales attributes are appropriate for your application. These settings have major performance implications.

Before:

<s:head theme="ajax"/>After:

<sx:head parseContent="true"/>Update all ajax themed tags
Some tags are available only in the Dojo plugin taglib. It will be immediately obvious from your IDE that these tags need to change to the sx: prefix.
Some tags are available in both the core and Dojo plugin taglibs. Any tag that uses the ajax theme needs to be changed to the sx: prefix.

Before:

<s:url id="jobStatus" includeParams="get" value="/RefreshOptimizationJobStatus.action" /><s:div id="jobStatus" theme="ajax" href="%{jobStatus}" updateFreq="5000" indicator="indicator"></s:div><img id="indicator" src="img/indicator.gif" alt="Loading..." style="display:none"/>After:

<s:url var="jobStatus" includeParams="get" value="/RefreshOptimizationJobStatus.action" /><sx:div id="jobStatus" href="%{#jobStatus}" updateFreq="5000" autoStart="true" indicator="indicator"></sx:div><img id="indicator" src="img/indicator.gif" alt="Loading..." style="display:none"/><!--[if !vml]--><!--[endif]-->
If you forget to migrate a tag reference from the core to the dojo plugin you will receive an exception similar to the one below:

2008-04-19 14:32:30,475 ERROR [http-8443-Processor23] [[jsp]] Servlet.service() for servlet jsp threw exceptionorg.apache.jasper.JasperException: No tag "datetimepicker" defined in tag library imported with prefix "s"

Check inline javascript
If your ajax html results contain inline javascript that needs to be executed after updating the DOM, ensure your ajax tags set executeScripts="true" and separateScripts="true". These attributes instruct the widget to search for javascript in the result,
extract it, update the DOM with the result and then execute the javascript.

eg. The following bind will execute scripts within the result when the Submit button is pressed

<s:submit value="Submit" id="submit3" /><sx:bind targets="div1" highlightColor="#ffffcc" highlightDuration="500" sources="submit3"events="onclick" href="%{#fragment3Url}" errorNotifyTopics="/error" executeScripts="true"separateScripts="true"/>Check inline widgets
If your ajax html results include dojo widgets, ensure the head tag's parseContent attribute is true. This instructs dojo to parse the ajax responses for widgets. Note that Struts2.0 always enabled this feature and it could not be turned off. Struts2.1 disables this feature and allows it to be turned on as there is a significant performance impact.

Convert EL expressions to OGNL
Struts2.1 tags do not allow evaluation of JSP EL within their attributes. Instead, Struts2 tags evaluate attribute values as OGNL. Allowing both expression languages within the same attribute opens major security vulnerabilities.

todo: how to convert

<!--[if !vml]--><!--[endif]-->
Forgetting to convert attributes to OGNL expressions will produce exceptions similar to the one below:

org.apache.jasper.JasperException: /example.jsp(8,6) According to TLD or attribute directive in tagfile, attribute value does not accept any expression

Reduce verbose logging
Struts 2.1 introduces more verbose logging than Struts 2.0. While extremely valuable, some users may find these annoying.

Missing Properties
This message states that the framework searched for a property in the value stack and failed to find it.

2008-04-19 14:21:08,177 WARN  [http-8443-Processor25] [OgnlValueStack] Could not find property [templateDir]2008-04-19 14:21:08,177 WARN  [http-8443-Processor25] [OgnlValueStack] Could not find property [templateDir]2008-04-19 14:21:08,177 WARN  [http-8443-Processor25] [OgnlValueStack] Could not find property [templateDir]2008-04-19 14:21:08,178 WARN  [http-8443-Processor25] [OgnlValueStack] Could not find property [org.apache.catalina.jsp_file]To hide these messages, turn off the WARN level logging for OgnlValueStack.

eg. Include a new limit category in your log4j.xml file (only log errors or worse):

<category name="com.opensymphony.xwork2.ognl.OgnlValueStack">      <priority value="error"/>   </category>TextProvider missing keys
These messages state that the framework searched for text in a resource bundle and failed to find it.

2008-04-19 14:32:30,106 WARN  [http-8443-Processor23] [TextProviderHelper] The first TextProvider in the ValueStack(package.Action) could not locate the message resource with key 'companyDetails.addressId'2008-04-19 14:32:30,107 WARN  [http-8443-Processor23] [TextProviderHelper] The default value expression'companyDetails.addressId' evaluated to '10'To hide those messages, turn off the WARN level logging for TextProviderHelper.

eg. Include a new limit category in your log4j.xml file (only log errors or worse):

<category name="org.apache.struts2.util.TextProviderHelper">      <priority value="error"/>   </category>



Update Unit Tests
There are two known major migration issues affecting user's unit tests.

The Configuration API now uses a Builder pattern
The ActionContext.getContext() method does not create a context on demand.
Review the Unit Tests included with Struts2 for recommended practices to setup the Configuration and context.

A quick fix for ActionContext.getContext() returning null :

ConfigurationManager configurationManager = new ConfigurationManager();        configurationManager.addContainerProvider(new XWorkConfigurationProvider());        Configuration config = configurationManager.getConfiguration();        Container container = config.getContainer();        ValueStack stack = container.getInstance(ValueStackFactory.class).createValueStack();        stack.getContext().put(ActionContext.CONTAINER, container);        ActionContext.setContext(new ActionContext(stack.getContext()));        assertNotNull(ActionContext.getContext());Trouble-shooting
The issues are listed in the same order as encountered after changing jars over from 2.0.x to 2.1.x. Noteworthy, the migration was done under the following setup: Fedora core 6, JDK 1.6.0_2 and Tomcat 6.0.10 running from MyEclipse plugin.

Result type "redirect-action" was renamed to "redirectAction":
SEVERE: Exception starting filter struts2Unable to load configuration. - action - file:/home/giaz/code/.metadata/.plugins/            com.genuitec.eclipse.easie.tomcat.myeclipse/tomcat/webapps/webui/WEB-INF/classes/struts.xml:39:98        at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:58)        at org.apache.struts2.dispatcher.Dispatcher.init_PreloadConfiguration(Dispatcher.java:370)...Caused by: Error building results for action ScheduleJob in namespace  - action - file:/home/giaz/code/.metadata/.plugins/             com.genuitec.eclipse.easie.tomcat.myeclipse/tomcat/webapps/webui/WEB-INF/classes/struts.xml:39:98        at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.addAction(XmlConfigurationProvider.java:372)        ... 30 moreCaused by: There is no result type defined for type 'redirect-action' mapped with name 'success' - result -              file:/home/giaz/code/.metadata/.plugins/com.genuitec.eclipse.easie.tomcat.myeclipse/tomcat/webapps/webui/              WEB-INF/classes/struts.xml:40:50        at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.buildResults(XmlConfigurationProvider.java:616)        ... 35 moreThe struts.xml before:

<action name="ScheduleJob" class="com.sag.optimizer.ui.web.action.scheduler.ScheduleJobAction">  <result name="success" type="redirect-action">     <param name="actionName">ListDisplayOptimizationJobStatus</param>  </result>  <result name="error" type="tiles">webui.requestFailed</result></action>To resolve this issue modify the struts.xml action definition to:

<action name="ScheduleJob" class="com.sag.optimizer.ui.web.action.scheduler.ScheduleJobAction">  <result name="success" type="redirectAction">     <param name="actionName">ListDisplayOptimizationJobStatus</param>  </result>  <result name="error" type="tiles">webui.requestFailed</result></action>or to:

<action name="ScheduleJob" class="com.sag.optimizer.ui.web.action.scheduler.ScheduleJobAction">  <result name="success" type="redirect">ListDisplayOptimizationJobStatus.action</result>  <result name="error" type="tiles">webui.requestFailed</result></action>
<!--[if !supportLineBreakNewLine]-->
<!--[endif]-->Tiles 2.1.x plugin tiles.xml now requires DOCTYPE:
Problem Symptom:

Nov 22, 2007 11:38:11 AM org.apache.tiles.impl.BasicTilesContainer initINFO: Initializing Tiles2 container. . .Nov 22, 2007 11:38:11 AM org.apache.commons.digester.Digester errorSEVERE: Parse Error at line 2 column 19: Document is invalid: no grammar found.org.xml.sax.SAXParseException: Document is invalid: no grammar found.        at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:195)        at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.error(ErrorHandlerWrapper.java:131)<!--[if !vml]--><!--[endif]-->
Reason for this

This is due to the fact that Tiles 2.0.5 now turns validation on as default.


The tiles.xml page before:

<?xml version="1.0" encoding="ISO-8859-1" ?><tiles-definitions/>To resolve the issue simply add:

<?xml version="1.0" encoding="ISO-8859-1" ?><!DOCTYPE tiles-definitions PUBLIC        "-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN" "http://struts.apache.org/dtds/tiles-config_2_0.dtd"><tiles-definitions/><s:head theme="ajax"/> is obsolete, use a different theme:
Problem Symptom: Accessing any page that includes <s:head theme="ajax"/> produces the following error:

Nov 22, 2007 1:54:51 PM freemarker.log.JDK14LoggerFactory$JDK14Logger errorSEVERE:Expression parameters.parseContent is undefined on line 45, column 28 in template/ajax/head.ftl.The problematic instruction:----------==> ${parameters.parseContent?string} [on line 45, column 26 in template/ajax/head.ftl]----------Java backtrace for programmers:----------freemarker.core.InvalidReferenceException: Expression parameters.parseContent is undefined on line 45,            column 28 in template/ajax/head.ftl.        at freemarker.core.TemplateObject.assertNonNull(TemplateObject.java:124)        at freemarker.core.TemplateObject.invalidTypeException(TemplateObject.java:134)Resolution is to either remove the "<s:head theme="ajax"/>" or use a different theme e.g. <s:head theme="xhtml" />

Ajax UI tags were moved to the new dojo plugin, use /struts-dojo-tags taglib instead of (or in addition to) /struts-tags:
Problem Symptom: Accessing a page containing ajax UI tags through using the struts 2 taglib will produce the following error:

SEVERE: Servlet.service() for servlet jsp threw exceptionorg.apache.jasper.JasperException: /jsp/list/listOptimizationJobStatus.jsp(6,0) Attribute href invalid for tag div according to TLD        at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)        at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)JSP before migration:

<%@ page contentType="text/html; charset=UTF-8" %><%@ taglib prefix="display" uri="http://displaytag.sf.net" %><%@ taglib prefix="s" uri="/struts-tags"%><s:url id="jobStatus" includeParams="get" value="/RefreshOptimizationJobStatus.action" /><s:div id="jobStatus" theme="ajax" href="%{jobStatus}" updateFreq="5000" indicator="indicator"></s:div><img id="indicator" src="img/indicator.gif" alt="Loading..." style="display:none"/>Resolution is to import and use struts-dojo-tags plugin instead:

<%@ page contentType="text/html; charset=UTF-8" language="java" %><%@ taglib prefix="s" uri="/struts-tags"%><%@ taglib prefix="sx" uri="/struts-dojo-tags" %><s:url var="jobStatus" includeParams="get" value="/RefreshOptimizationJobStatus.action" /><sx:div id="jobStatus" href="%{#jobStatus}" updateFreq="5000" autoStart="true" indicator="indicator"></sx:div><img id="indicator" src="img/indicator.gif" alt="Loading..." style="display:none"/><!--[if !vml]--><!--[endif]-->
Other Ajax UI tags were also moved to the dojo plugin

Note the use of remote div is now through the dojo plugin taglib sx. Other ui tags are also no longer available through the /struts-tags taglib but only through the /struts-dojo-tags taglib: datetimepicker and autocompleter.


User-defined converter (subclassing StrutsTypeConverter) will no longer be needed when using datetimepicker:
Problem Symptom: Your custom StrutsTypeConverter implementation does not longer work in version 2.1.x. In 2.0.x you needed to implement a custom StrutsTypeConverter e.g. StringToDateConverter to be able to parse and convert to Date the String posted from a datetimepicker control into the action. In version 2.0.x datetimepicker was posting a String formatted as specified in the "displayFormat" field e.g.

<%@ taglib prefix="s" uri="/struts-tags"%><s:datetimepicker label="Begin Date" name="beginDate" displayFormat="yyyy.MM.dd">In version 2.1.x datetimepicker will post a String Date in RFC 3339 format, so you can define your setter to receive a Date directly and avoid using converters for this purpose e.g.

<%@ taglib prefix="s" uri="/struts-tags"%><%@ taglib prefix="sx" uri="/struts-dojo-tags" %><sx:datetimepicker label="Begin Date" name="beginDate" displayFormat="yyyy.MM.dd">ActionMappingParams
Parameters set by the action mapping are not set/not available through ParameterAware (This change is only needed when going to 2.1.x (where x>0))

These are now only available if you use the new interceptor named "actionMappingParams".

分享到:
评论

相关推荐

    网络第一份struts2.0学习文档

    - `&lt;package&gt;`:配置包,包含一组相关的配置项。 - `&lt;action&gt;`:配置Action的相关信息。 - `&lt;result&gt;`:指定Action成功或失败后的视图。 - `&lt;interceptor&gt;`:配置拦截器。 - **Action配置**: - **Action类**...

    完美版(适合自学)struts2

    - struts-default.xml:默认配置文件,包含核心bean和拦截器定义,自动包含到struts.xml中。 - 其他配置文件如velocity.properties、struts-default.vm和struts-plugin.xml等也是Struts2运行的重要组成部分。 为了...

    Struts2.1.6+Spring2.5.6+Hibernate3.3.1整合

    - 检查Hibernate配置文件(如hibernate.cfg.xml)中的配置项是否正确。 - 确认所有依赖的jar包都已正确加入到项目中。 - 如果使用了Spring来管理Hibernate的SessionFactory,确保配置无误。 #### 二、配置Struts...

    使用Struts2必须配备的Jar包.txt

    - **配置调整**:Struts2.1.6中某些配置项的名称和默认值可能与早期版本有所不同,例如`Result`类型的配置。 - **插件支持**:使用Struts2.1.x时可能还需要额外的插件支持,比如`struts2-convention-plugin-2.1.6....

    JAVA程序开发大全---上半部分

    12.2.3 配置Struts 2.0项目 217 12.2.4 创建Struts 2.0的Action类 218 12.2.5 Struts 2.0中的国际化编程 221 12.2.6 创建基于POJO的Action 223 12.3 Spring整合Struts 2.0框架 224 12.4 Struts 2.0应用实例:登录...

    图解SSH2框架配置步骤

    - 在偏好设置窗口中,找到并展开服务器配置项(`Server`),然后找到Tomcat 6.x配置项。 - 设置Tomcat 6.x的路径,并确保使用的JDK版本为JDK 1.6。 3. **导入所需的JAR包**:根据需求,将Struts2、Spring和Hibernate...

    xwork-2.1.2

    XWork-2.1.2的改进和增强也直接影响到了Struts 2的性能和功能。 6. **2.1.2版本的改进** - 性能提升:2.1.2版本对内部机制进行了优化,减少了不必要的对象创建和内存消耗,提升了整体性能。 - 错误修复:修复了...

    SSH 配置相关信息

    #### 五、其他配置项 **5. 配置log4j.properties文件** - 创建`log4j.properties`文件,用于日志记录。 **6. 映射文件配置** - 对于数据库映射文件(如oracle中的Long类型映射为Java中的Integer类型),需要进行...

    SSH框架搭配,spring+struts+hibernate框架搭配步骤

    配置 Struts2 需要添加 Struts2 架包,包括 commons-logging-1.0.4.jar、commons-fileupload-1.2.1.jar、freemarker-2.3.13.jar、ognl-2.6.11.jar、struts2-core-2.1.6.jar 和 xwork-2.1.2.jar 等。 然后,需要创建...

    J2EE电子商务系统开发从入门到精通--基于Struts和Hibernate技术实现

    - 包括缓存策略、日志级别等配置项。 **3.4 事务** - **3.4.1 JDBC API操作事务** - 可以使用JDBC API手动管理事务,但在实际应用中较少使用。 - **3.4.2 Hibernate API操作事务** - Hibernate提供了更加便捷的...

    J2EE电子商务系统从入门到精通--基于Struts和Hibernate技术实现.

    ### J2EE电子商务系统从入门到精通——基于Struts和Hibernate技术实现 #### 一、J2EE概论 在本书的第一章中,作者详细介绍了从简单的双层架构到复杂的多层架构的发展历程,并深入探讨了J2EE的核心概念和技术。 - ...

    s2sh--lib.rar_s2sh_s2sh l_spring l_ssh_struts2

    【描述】"s2sh框架所需的包,无需另外加载了,可直接下载"意味着这个压缩包已经包含了完整的s2sh开发环境所需的所有关键库,用户可以直接使用,避免了在项目中手动配置和查找这些依赖项的繁琐步骤。 【标签】"s2sh ...

Global site tag (gtag.js) - Google Analytics