I am trying to use custom type conversion with property file for action.
Action class is implementing ModelDriven for bean properties.
public class WelcomeAction extends ActionSupport implements ModelDriven<MyBean>{
public String execute(){
return SUCCESS;
}
private MyBean bean = new MyBean();
@Override
public MyBean getModel() {
return bean;
}
}
Bean class is:
public class MyBean{
private Rectangle rectangle;
public Rectangle getRectangle() {
return rectangle;
}
public void setRectangle(Rectangle rectangle) {
this.rectangle = rectangle;
}
}
and I have WelcomeAction-conversion.properties file parallel to action class with converter config as:
bean.rectangle=struts2.typeconverters.RectangleTypeConverter
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.
My struts 2 version is 2.3.15.1, any idea what could be the issue.
UPDATE: Created an issue https://issues.apache.org/jira/browse/WW-4249
Got the correct way for implementation: http://www.journaldev.com/2221/struts-2-ognl-tutorial-with-custom-type-converter-example
rectangle=struts2.typeconverters.RectangleTypeConverter? - Lukasz Lenart