Spring Boot 集成 MyBatis

原文連接:http://blog.csdn.net/isea533/article/details/50359390html

 

在集成MyBatis前,咱們先配置一個druid數據源。java

Spring Boot 系列

  1. Spring Boot 入門mysql

  2. Spring Boot 屬性配置和使用git

  3. Spring Boot 集成MyBatisgithub

  4. Spring Boot 靜態資源處理web

  5. Spring Boot - 配置排序依賴技巧spring

  6. Spring Boot - DevTools 介紹sql

Spring Boot 集成druid

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

Spring Boot 集成MyBatis有兩種方式,一種簡單的方式就是使用MyBatis官方提供的:

mybatis-spring-boot-starter

另一種方式就是仍然用相似mybatis-spring的配置方式,這種方式須要本身寫一些代碼,可是能夠很方便的控制MyBatis的各項配置。

1、mybatis-spring-boot-starter方式

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 

 

除了上面常見的兩項配置,還有:

  • mybatis.config:mybatis-config.xml配置文件的路徑
  • mybatis.typeHandlersPackage:掃描typeHandlers的包
  • mybatis.checkConfigLocation:檢查配置文件是否存在
  • mybatis.executorType:設置執行模式(SIMPLE, REUSE, BATCH),默認爲SIMPLE

2、mybatis-spring方式

這種方式和日常的用法比較接近。須要添加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註解,而且反回了一個PlatformTransactionManagerBean。

另外應該注意到這個配置中沒有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集成

分頁插件做爲插件的例子在上面代碼中有。

通用Mapper配置實際就是配置MapperScannerConfigurer的時候使用tk.mybatis.spring.mapper.MapperScannerConfigurer便可,配置屬性使用Properties

Spring Boot集成MyBatis的基礎項目

我上傳到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或者頁面編碼的設置問題。

1、Spring或頁面編碼問題

在JSP頁面第一行加上下面代碼:

 

  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

由於Springmvc採用默認的編碼(ISO-8859-1)進行解析參數, 這時就會出現亂碼問題。

在Web.xml加上Spring編碼轉換過濾器filter。

  1. <filter>
  2. <filter-name>encodingFilter</filter-name>
  3. <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  4. <init-param>
  5. <param-name>encoding</param-name>
  6. <param-value>utf-8</param-value>
  7. </init-param>
  8. <init-param>
  9. <param-name>forceEncoding</param-name>
  10. <param-value>true</param-value>
  11. </init-param>
  12. </filter>
  13. <filter-mapping>
  14. <filter-name>encodingFilter</filter-name>
  15. <url-pattern>/*</url-pattern>
  16. </filter-mapping>

 

2、Web容器的問題

若是上面方案一尚未解決亂碼的問題,看一下你的Web容器的問題的編碼設置,好比我使用的是Tomcat,找到server.xml。

能夠看到Connector沒有設置編碼。加上編碼屬性URIEncoding,以下:

 

  1. <Connector port="8081" protocol="HTTP/1.1"
  2. connectionTimeout="20000"
  3. redirectPort="8443" URIEncoding="UTF-8"/>

端口我使用是8081。上面主要是解決GET請求中文亂碼的問題。

 

3、數據庫或者連接數據庫問題

若是經過打斷點看到Spring Controller接收到值中方是正常的,可是插入數據庫以後就是亂碼了。通常這種狀況無非就是兩種問題。

一、數據庫編碼、表編碼、列編碼依次檢查是不是UTF-8編碼

二、mysql的連接字符串加上編碼參數,以下:

  1. <environments default="development">
  2. <environment id="development">
  3. <transactionManager type="JDBC"/>
  4. <dataSource type="POOLED">
  5. <property name="driver" value="com.mysql.jdbc.Driver"/>
  6. <property name="url" value="jdbc:mysql://127.0.0.1:3306/lanhuprivi?useUnicode=true&amp;characterEncoding=UTF-8"/>
  7. <property name="username" value="root"/>
  8. <property name="password" value="root"/>
  9. </dataSource>
  10. </environment>
  11. </environments>

4、Response或者Servlet亂碼問題

第一種方法:

 

  1. //getWriter()方法將 輸出編碼設置成iso-8859-1,這樣輸出utf8編碼字符串必然亂碼
  2. PrintWriter pw = response.getWriter();
  3. //一、
  4. //response.setCharacterEncoding("UTF-8");
  5. //二、
  6. response.setContentType("text/html; charset=utf-8");
  7. pw.write(resStr);
  8. pw.flush();
  9. pw.close();

setContentType 和 setCharacterEncoding兩方法中設定characterEncoding的方法對服務器效果一致,不須要反覆調用。

 

在輸出文本內容時,採用response.setContentType("text/html; charset=utf-8");彷佛更爲方便。

 

第二種方法:

 

  1. PrintWriter out = new PrintWriter(new OutputStreamWriter(new FileOutputStream(), "UTF-8"));
相關文章
相關標籤/搜索