首页>代码>spring boot+maven+mybatis+mysql+spring mvc快速搭建java web项目最简单的入门实例>/mybatisSpringBoot/src/main/java/com/cn/conf/MyBatisConfig.java
package com.cn.conf; import com.github.pagehelper.PageHelper; import org.apache.ibatis.plugin.Interceptor; import org.apache.ibatis.session.SqlSessionFactory; import org.mybatis.spring.SqlSessionFactoryBean; import org.mybatis.spring.SqlSessionTemplate; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.io.support.PathMatchingResourcePatternResolver; import org.springframework.core.io.support.ResourcePatternResolver; import org.springframework.jdbc.datasource.DataSourceTransactionManager; import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.annotation.EnableTransactionManagement; import org.springframework.transaction.annotation.TransactionManagementConfigurer; import javax.sql.DataSource; import java.util.Properties; /** * MyBatis基础配置 * * @author liuzh * @since 2015-12-19 10:11 */ @Configuration @EnableTransactionManagement public class MyBatisConfig implements TransactionManagementConfigurer { @Autowired DataSource dataSource; @Bean(name = "sqlSessionFactory") public SqlSessionFactory sqlSessionFactoryBean() { SqlSessionFactoryBean bean = new SqlSessionFactoryBean(); bean.setDataSource(dataSource); bean.setTypeAliasesPackage("com.cn.model"); // 分页插件 PageHelper pageHelper = new PageHelper(); Properties properties = new Properties(); properties.setProperty("reasonable", "true"); properties.setProperty("supportMethodsArguments", "true"); properties.setProperty("returnPageInfo", "check"); properties.setProperty("params", "count=countSql"); pageHelper.setProperties(properties); // 添加插件 bean.setPlugins(new Interceptor[] { pageHelper }); // 添加XML目录 ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); try { bean.setMapperLocations(resolver .getResources("classpath:mapper/*.xml")); return bean.getObject(); } catch (Exception e) { e.printStackTrace(); throw new RuntimeException(e); } } @Bean public SqlSessionTemplate sqlSessionTemplate( SqlSessionFactory sqlSessionFactory) { return new SqlSessionTemplate(sqlSessionFactory); } @Bean @Override public PlatformTransactionManager annotationDrivenTransactionManager() { return new DataSourceTransactionManager(dataSource); } }
最近下载更多
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日