Has there been any discussion about using annotations to reduce the verbosity of managing row mappers?
So that for example,
is equivalent toCode:@RowMapper(name = fooMapper) private Foo mapRow(ResultSet rs, int rowNum)();
It's something that would be nice to have so that my DAO test code (which uses Spring's Transactional Context Tests will not have about half a dozen inner classes (some about 3 deep) for unwinding my object tree.Code:private ParameterizedRowMapper<Foo> fooMapper = new ParameterizedRowMapper<Foo>(){}


Reply With Quote
