I'm currently working on a legacy project built by a third-party contractor. It's a Java server which uses Spring and MyBatis and talks to a MySQL server.
I'm trying to refactor some ugly method names in my DTO getters/setters which contain both CamelCase and underscores. I'll use the method getCommon_name()
as an example. When I rename it to getCommonName()
), the database lookup for that method stops working. I've tried doing a text search to find occurrences in the code where the method is called, but it seems to exist only within the DTO definition. It's possible that there's some automatic mapping to the database that I'm not understanding properly, because that method looks up a table called common_name
, but I can't be certain.
Is anyone able to shed some light on what might be happening? This is my first time using Spring/MyBatis.
Edit with more details:
The answers so far have been asking about how my mapping is set up. It looks something like this:
mybatis-config.xml
<configuration>
<typeAliases>
<typeAlias type="com.example.dto.SpeciesDTO" alias="species" />
<!--aliases for other DTOs-->
</typeAliases>
<mappers>
<mapper resource="com/example/dao/species/speciesSQL.xml" />
<!--aliases for other DAOs-->
</mappers>
</configuration>
mybatis-context.xml
<beans>
<bean id="SpeciesDao" class="org.mybatis.spring.mapper.MapperFactoryBean">
<property name="mapperInterface"
value="com.example.dao.species.SpeciesDAO" />
<property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean>
<!--beans for other DAOs-->
</beans>
Also, DAO files all have associated .xml files that look something like this:
<mapper namespace="com.example.species.speciesDAO">
<select id="getSpecies" parameterType="String" resultType="species">
SELECT * FROM SPECIES
</select>
<!--other methods executing SQL-->
</mapper>
I haven't seen anything that explicitly maps DTO getters/setters the way DAO methods are. For example, if I search for the method getCommon_name()
, the only occurrences are the definition in the DTO itself and a call to that method in one of my services (I made sure to edit both occurrences when renaming the method). All the method does is return a property called common_name
.
Is there an mybatis-config.xml or other xml mapping file that is setting the convention of names? For example, from here: