You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Bruce Phillips (JIRA)" <ji...@apache.org> on 2013/11/29 14:56:35 UTC

[jira] [Assigned] (WW-4249) Custom Type Converter issue when Action class is implementing ModelDriven

     [ https://issues.apache.org/jira/browse/WW-4249?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bruce Phillips reassigned WW-4249:
----------------------------------

    Assignee: Bruce Phillips

> Custom Type Converter issue when Action class is implementing ModelDriven
> -------------------------------------------------------------------------
>
>                 Key: WW-4249
>                 URL: https://issues.apache.org/jira/browse/WW-4249
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Other
>    Affects Versions: 2.3.15.1
>         Environment: Mac OS X 10.9 and Tomcat 7
>            Reporter: Pankaj Kumar
>            Assignee: Bruce Phillips
>              Labels: ognl, type-converter
>             Fix For: 2.3.17
>
>
> I am trying to use custom type conversion with property file for action.
> Action class is implementing ModelDriven for bean properties.
> {code:java}
> public class WelcomeAction extends ActionSupport implements ModelDriven<MyBean>{
>     public String execute(){
>         return SUCCESS;
>     }
>     private MyBean bean = new MyBean();
>     @Override
>         public MyBean getModel() {
>         return bean;
>     }
> }
> {code}
> Bean class is:
> {code:java}
> public class MyBean{
>     private Rectangle rectangle;
>     public Rectangle getRectangle() {
>         return rectangle;
>     }
>     public void setRectangle(Rectangle rectangle) {
>         this.rectangle = rectangle;
>     }
> }
> {code}
> and I have WelcomeAction-conversion.properties file parallel to action class with converter config as:
> {noformat}
> bean.rectangle=struts2.typeconverters.RectangleTypeConverter
> {noformat}
> I tried putting key as bean, rectangle etc but its not working, its not using converter class.
> If i use @TypeConverter annotation or global converter then its working fine.
> Complete Project: http://www.journaldev.com/2221/struts-2-ognl-tutorial-with-custom-type-converter-example
> Project ZIP: http://cdn1.journaldev.com/wp-content/uploads/struts2/Struts2OGNLExample.zip
> SO Question: http://stackoverflow.com/questions/18993091/struts-2-type-converter-issue



--
This message was sent by Atlassian JIRA
(v6.1#6144)