标签:nbsp blog package scan 路径名 ram fan inter bat
在ApplicationContext.xml中
<!-- 配置原生Dao实现 注意:class必须指定Dao实现类的全路径名称 --> <bean id="xxxDao" class="com.fanfan.dao.XxxDaoImpl"> <property name="sqlSessionFactory" ref="sqlSessionFactory"></property> </bean>
在ApplicationContext.xml中
非包扫描??
<bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"><!-- 配置mapper接口的全路径名称 --> <property name="mapperInterface" value="cn.itheima.mapper.UserMapper"></property>
<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
</bean>
包扫描方式?
<!-- 使用包扫描的方式批量引入Mapper 扫描后引用的时候可以使用类名,首字母小写. --> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <!-- 指定要扫描的包的全路径名称,如果有多个包用英文状态下的逗号分隔 --> <property name="basePackage" value="cn.itheima.mapper"></property> </bean>
标签:nbsp blog package scan 路径名 ram fan inter bat
原文地址:http://www.cnblogs.com/mask-fan/p/7815967.html