Hi,
I have just started using MyBatis generator to generate my Java model. However all the Java files are being generated with field names having underscores. (Since the database columns have underscores).
Some of the tables have 50+ columns, and I hate to manually replace the underscores with came case names.
I came across mapUnderscoreToCamelCase setting:
http://mybatis.github.io/mybatis-3/configuration.html#settingsBut I am not sure where this setting should go.
At present I am using generatorConfig.xml, and that does not support <settings> or <setting> element at all:
http://mybatis.github.io/generator/configreference/xmlconfig.htmlPlease help me mapping my column names to came case Java fields. TIA.