I have an Object who's internal representation is not conducive to data entry. I have a class with multiple custom components, one of which is a Range class. The Range class is easiest to input using two text field inputs rather than as one text field that uses a custom PropertyEditor.
I have a fully functional constructor that could handle the multiple field option but I don't believe there's anyway to get Spring to use the constructor rather than setter injection. Am I wrong about that? If I'm not, is it possible to bind two form elements to a single object member using a custom PropertyEditor or some related method?
Thanks!