淘先锋技术网

首页 1 2 3 4 5 6 7

1.常量 作为 判断条件时:常量需要加 .toString() 来转换,这种方法是稳定的

<if test="phaseType=='0'.toString()">
    and Stuas='010'
</if>

2.数据库字段 自动转为 实体类的属性:即驼峰命名

1)在spring-mybatis.xml中配置:mapUnderscoreToCamelCase=true

如下:spring-mybatis.xml

<bean id="_sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
   <property name="configLocation" value="classpath:META-INF/mybatis/sqlMapConfig-default.xml"></property>
</bean>
sqlMapConfig-default.xml

<configuration>
   <settings>
        <setting name="mapUnderscoreToCamelCase" value="true" />
   </settings>
</configuration>

2)resultType的配置:resultType="hashMap"是可以返回结果,但是结果是没有自动转成驼峰,要真正存在一个与它对应的驼峰Bean与它对应才生效,resultType="xxx.xxx.User"

3)数据库的每个单词都是以下划线_间隔 时才能正常转为 驼峰命名,若多个单词连写,不会正常转换。