[
https://issues.apache.org/struts/browse/WW-1814?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ted Husted resolved WW-1814.
----------------------------
Resolution: Fixed
Fix Version/s: 2.1.0
Assignee: Ted Husted
Completed: At revision: 520241, 520243
The static block now reads
<!-- Only have static injections -->
<bean class="com.opensymphony.xwork2.ObjectFactory" static="true" />
<bean class="com.opensymphony.xwork2.util.XWorkConverter" static="true" />
<bean class="com.opensymphony.xwork2.util.OgnlValueStack" static="true" />
<bean class="org.apache.struts2.dispatcher.Dispatcher" static="true" />
<bean class="org.apache.struts2.components.Include" static="true" />
<bean class="org.apache.struts2.dispatcher.FilterDispatcher" static="true"
/>
<bean class="org.apache.struts2.views.util.ContextUtil" static="true" />
<bean class="org.apache.struts2.views.util.UrlHelper" static="true" />
> Default TypeConverters always created with default ObjectFactory
> ----------------------------------------------------------------
>
> Key: WW-1814
> URL: https://issues.apache.org/struts/browse/WW-1814
> Project: Struts 2
> Issue Type: Bug
> Components: Configuration
> Affects Versions: 2.0.6
> Reporter: Jasper Rosenberg
> Assigned To: Ted Husted
> Fix For: 2.0.7, 2.1.0
>
>
> XWorkConverter uses ObjectFactory.getObjectFactory() when loading default
> TypeConvertors in its constructor. However, currently in struts-default.xml,
> the ObjectFactory has its static injections after the XWorkConverter does, so
> when the XWorkConverter is constructed, it ends up using the default
> ObjectFactory (as set in DefaultConfiguration.reload()).
> The fix is easy, just move:
> <bean class="com.opensymphony.xwork2.ObjectFactory" static="true" />
> to be the first static injection.
> Also, while you are there,
> <bean class="com.opensymphony.xwork2.util.XWorkConverter" static="true" />
> should also be moved to be before
> <bean class="com.opensymphony.xwork2.util.OgnlValueStack" static="true" />
> This is because XWorkMapPropertyAccessor staticly creates an instance of
> XWorkMapPropertyAccessor which in turn staticlly gets an instance of the
> XWorkConverter. (Necessary until the XWork 2 issue is resolved:
> http://jira.opensymphony.com/browse/XW-492)
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.