Mybatis 通過掃描 自動生成別名

劍握在手發表於2017-08-17
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>

<property name="typeAliasesPackage" value="com.xxx"/> <property name="typeAliasesSuperType" value="com.xxx.xxx.Xxx"/>

<property name="mapperLocations" value="classpath:/mappings/**/*.xml"/> <property name="configLocation" value="classpath:/mybatis-config.xml"></property> </bean>

加粗放大的這兩行即是。

要為【com.xxx】下目標類生成別名的話,那麼這些類必須繼承同一個父類【com.xxx.xxx.Xxx】,

 

相關文章