原文連接:http://blog.csdn.net/isea533/article/details/50359390html
在集成MyBatis前,咱們先配置一個druid數據源。java
Spring Boot 入門mysql
Spring Boot 集成MyBatisgithub
Spring Boot - 配置排序依賴技巧spring
druid
有不少個配置選項,使用Spring Boot 的配置文件能夠方便的配置druid
。數據庫
在application.yml
配置文件中寫上:springboot
spring: datasource: name: test url: jdbc:mysql://192.168.16.137:3306/test username: root password: # 使用druid數據源 type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.jdbc.Driver filters: stat maxActive: 20 initialSize: 1 maxWait: 60000 minIdle: 1 timeBetweenEvictionRunsMillis: 60000 minEvictableIdleTimeMillis: 300000 validationQuery: select 'x' testWhileIdle: true testOnBorrow: false testOnReturn: false poolPreparedStatements: true maxOpenPreparedStatements: 20
這裏經過type: com.alibaba.druid.pool.DruidDataSource
配置便可!
Spring Boot 集成MyBatis有兩種方式,一種簡單的方式就是使用MyBatis官方提供的:
另一種方式就是仍然用相似mybatis-spring
的配置方式,這種方式須要本身寫一些代碼,可是能夠很方便的控制MyBatis的各項配置。
pom.xml
中添加依賴:<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.0.0</version> </dependency>
mybatis-spring-boot-starter
依賴樹以下:
其中mybatis
使用的3.3.0版本,能夠經過: <mybatis.version>3.3.0</mybatis.version>
屬性修改默認版本。 mybatis-spring
使用版本1.2.3,能夠經過: <mybatis-spring.version>1.2.3</mybatis-spring.version>
修改默認版本。
application.yml
中增長配置:mybatis: mapperLocations: classpath:mapper/*.xml typeAliasesPackage: tk.mapper.model
SIMPLE, REUSE, BATCH
),默認爲SIMPLE
這種方式和日常的用法比較接近。須要添加mybatis
依賴和mybatis-spring
依賴。
而後建立一個MyBatisConfig
配置類:
/** * 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("tk.mybatis.springboot.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); } }
上面代碼建立了一個SqlSessionFactory
和一個SqlSessionTemplate
,爲了支持註解事務,增長了@EnableTransactionManagement
註解,而且反回了一個PlatformTransactionManager
Bean。
另外應該注意到這個配置中沒有MapperScannerConfigurer
,若是咱們想要掃描MyBatis的Mapper接口,咱們就須要配置這個類,這個配置咱們須要單獨放到一個類中。
/** * MyBatis掃描接口 * * @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("tk.mybatis.springboot.mapper"); return mapperScannerConfigurer; } }
這個配置必定要注意@AutoConfigureAfter(MyBatisConfig.class)
,必須有這個配置,不然會有異常。緣由就是這個類執行的比較早,因爲sqlSessionFactory
還不存在,後續執行出錯。
作好上面配置之後就可使用MyBatis了。
分頁插件做爲插件的例子在上面代碼中有。
通用Mapper配置實際就是配置MapperScannerConfigurer
的時候使用tk.mybatis.spring.mapper.MapperScannerConfigurer
便可,配置屬性使用Properties
。
我上傳到github一個採用第二種方式的集成項目,而且集成了分頁插件和通用Mapper,項目包含了簡單的配置和操做,僅做爲參考。
項目地址:https://github.com/abel533/MyBatis-Spring-Boot
分頁插件和通用Mapper的相關信息能夠經過上面地址找到。
http://blog.csdn.net/zhangzuyuanbest/article/details/53453792
完全解決Spring MVC+Mybatis中文亂碼問題
Java對於新手最容易出現的問題就是中文亂碼的問題。今天我就來總結一下完全解決Spring mvc+Mybatis中文亂碼的方案。
首先要看打一斷點看一下Controller接收到參數值是否正常。若是不正常多半是由於Spring或者頁面編碼的設置問題。
在JSP頁面第一行加上下面代碼:
由於Springmvc採用默認的編碼(ISO-8859-1)進行解析參數, 這時就會出現亂碼問題。
在Web.xml加上Spring編碼轉換過濾器filter。
若是上面方案一尚未解決亂碼的問題,看一下你的Web容器的問題的編碼設置,好比我使用的是Tomcat,找到server.xml。
能夠看到Connector沒有設置編碼。加上編碼屬性URIEncoding,以下:
端口我使用是8081。上面主要是解決GET請求中文亂碼的問題。
若是經過打斷點看到Spring Controller接收到值中方是正常的,可是插入數據庫以後就是亂碼了。通常這種狀況無非就是兩種問題。
一、數據庫編碼、表編碼、列編碼依次檢查是不是UTF-8編碼
二、mysql的連接字符串加上編碼參數,以下:
第一種方法:
setContentType 和 setCharacterEncoding兩方法中設定characterEncoding的方法對服務器效果一致,不須要反覆調用。
在輸出文本內容時,採用response.setContentType("text/html; charset=utf-8");彷佛更爲方便。
第二種方法: