aaa_bbb를 aaaBbb로 변경.
context-mapper.xml 에서 하기거 추가
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mapperLocations" value="classpath:/aa/sqlmap/**/*.xml" />
<property name="configLocation" value="classpath:/aa/conf/mybatis-conf.xml" />
</bean>
mybatis-conf.xml에서 하기거 추가
<configuration>
<settings>
<setting name="mapUnderscoreToCamelCase" value="true" />
</settings>
<typeAliases>
<typeAlias alias="homeVO" type="com.aa.sample.service.HomeVO" />
</typeAliases>
</configuration>
'it > Spring' 카테고리의 다른 글
SuppressWarnings 어노테이션 (0) | 2016.07.11 |
---|---|
톰캣 에러 'Publishing to Tomcat v7.0 Server at localhost..' has encountered a problem. (0) | 2016.07.01 |