首页>代码>spring boot+maven+mybatis+mysql+spring mvc快速搭建java web项目最简单的入门实例>/mybatisSpringBoot/src/main/java/com/cn/conf/MyBatisMapperScannerConfig.java
package com.cn.conf; import org.springframework.boot.autoconfigure.AutoConfigureAfter; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import tk.mybatis.spring.mapper.MapperScannerConfigurer; import java.util.Properties; /** * MyBatis扫描接口,使用的tk.mybatis.spring.mapper.MapperScannerConfigurer,如果你不使用通用Mapper,可以改为org.xxx... * * @author liuzh * @since 2015-12-19 14:46 */ @Configuration //TODO 注意,由于MapperScannerConfigurer执行的比较早,所以必须有下面的注解 @AutoConfigureAfter(MyBatisConfig.class) public class MyBatisMapperScannerConfig { @Bean public MapperScannerConfigurer mapperScannerConfigurer() { MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer(); mapperScannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactory"); mapperScannerConfigurer.setBasePackage("com.cn.mapper"); Properties properties = new Properties(); properties.setProperty("mappers", "com.cn.util.MyMapper"); properties.setProperty("notEmpty", "false"); properties.setProperty("IDENTITY", "MYSQL"); mapperScannerConfigurer.setProperties(properties); return mapperScannerConfigurer; } }
最近下载更多
justin8023 LV3
2023年7月10日
zxhjy5 LV6
2021年6月4日
aaaahao LV13
2021年3月22日
AlanLi LV19
2020年7月14日
Hachi6 LV13
2020年6月29日
x2b2d2 LV12
2020年6月28日
浮生如茶 LV8
2020年6月3日
xiaoche117 LV17
2020年4月27日
k麝神k LV10
2020年3月29日
diwenyan LV3
2020年3月1日
最近浏览更多
2636804923 LV6
6月16日
1941549176 LV4
4月29日
youwuzuichen LV10
2023年8月14日
justin8023 LV3
2023年7月10日
酒酒清欢 LV8
2023年5月21日
胡明杨
2023年4月13日
暂无贡献等级
李亮 LV19
2023年3月6日
xiaobaitud LV13
2023年1月10日
LITIANYU084414 LV11
2023年1月1日
YUProject LV8
2022年12月17日