You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "D Qiu (JIRA)" <ji...@apache.org> on 2013/04/26 19:44:16 UTC

[jira] [Created] (WW-4059) @Conversion @TypeConversion on nested property

D Qiu created WW-4059:
-------------------------

             Summary: @Conversion @TypeConversion on nested property
                 Key: WW-4059
                 URL: https://issues.apache.org/jira/browse/WW-4059
             Project: Struts 2
          Issue Type: Bug
          Components: Value Stack
    Affects Versions: 2.3.14
         Environment: Windows
            Reporter: D Qiu


The j.converter is not called on "a.b.id" 
But it called on "a.id".   Is this a bug?

@Conversion(conversions = {
    @TypeConversion(type = ConversionType.CLASS, key = "a.b.id", converter = "j.converter"),
    @TypeConversion(type = ConversionType.CLASS, key = "a.id", converter = "j.converter")
})
public class TestAction extends ActionSupport {
	A a
	...
}

Class A{
	X id
	B b
	...
}

Class B{
	X id 
	...
}
...

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira