I have run into a problem with a Flex client using the Spring BlazeDS framework. I believe the problem could be solved if my Hibernate pojo's have lower case property names but I am using hbm2java (so the hbm.xml files are autogenerated) and so don't seem to be able to control it. The generated pojo property looks like this:
Code:
private HTTracker HTTracker; // Has uppercase HT
and I need it to look like this:
Code:
private HTTracker htTracker; // Need lowercase initial letter(s)
but still have the getter and setter as (get/set)
HTTracker or (get/set)
HtTracker. I have a reveng.xml file but can't find any information on how to accomplish this.
The database table row is:
Code:
`tracker_id` INT NOT NULL ,
...
CONSTRAINT `fk_htUserTrackerDataMapper_tracker_id`
FOREIGN KEY (`tracker_id` )
REFERENCES `htTracker` (`tracker_id` )