溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot整合mybatis中的問題及出現的一些問題小結

發(fā)布時間:2020-09-22 14:18:23 來源:腳本之家 閱讀:257 作者:King丶Star 欄目:編程語言

1.springboot整合mybatis mapper注入時顯示could not autowire,如果強行寫(value  = false ),可能會報NullPointException異常

解決方案:

dao層加注解@Component(value = "首字母小寫的接口名如UserMapper->userMapper")

dao層還可以加注解@Mapper

2.The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone問題

springboot整合mybatis中的問題及出現的一些問題小結

3.java.lang.IllegalArgumentException: DefaultSerializer requires a Serializable payload but received an object of type[xxx]

解決:實體對象類沒有序列化,需要implements Serializable

PS:下面看下springboot整合mybatis出現的一些問題

springboot整合mybatis非常非常的簡單,簡直簡單到發(fā)指。但是也有一些坑,這里我會詳細的指出會遇到什么問題,并且這些配置的作用

整合mybatis,無疑需要mapper文件,實體類,dao層,數據庫連接池。。。。。也就沒了。

先放配置application.yml

spring:
 datasource:
  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
  
  name: test
  url: jdbc:mysql://localhost:3306/mama-bike?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
  username: root
  password: root

mybatis:
 #告訴spring你的mapper的位置。
 mapper-locations: classpath:com/coder520/mamabike/**/**.xml
 #告訴spring你的實體類的位置
 type-aliases-package: classpath:com.coder520.mamabike.**.entity

logging:
 config: classpath:logback.xml

dao層接口      //就簡單的寫一個方法

public interface UserMapper {
 int insert(User record);
}

mapper

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.coder520.mamabike.user.dao.UserMapper" >
 <resultMap id="BaseResultMap" type="com.coder520.mamabike.user.entity.User" >
 <id column="id" property="id" jdbcType="BIGINT" />
 <result column="nickname" property="nickname" jdbcType="VARCHAR" />
 <result column="enable_flag" property="enableFlag" jdbcType="TINYINT" />
 <result column="verify_flag" property="verifyFlag" jdbcType="TINYINT" />
 <result column="head_img" property="headImg" jdbcType="VARCHAR" />
 <result column="mobile" property="mobile" jdbcType="VARCHAR" />
 </resultMap>
 <sql id="Base_Column_List" >
 id, nickname, enable_flag, verify_flag, head_img, mobile
 </sql>
 <insert id="insert" parameterType="com.coder520.mamabike.user.entity.User" >
 insert into user (id, nickname, enable_flag, 
  verify_flag, head_img, mobile
  )
 values (#{id,jdbcType=BIGINT}, #{nickname,jdbcType=VARCHAR}, #{enableFlag,jdbcType=TINYINT}, 
  #{verifyFlag,jdbcType=TINYINT}, #{headImg,jdbcType=VARCHAR}, #{mobile,jdbcType=VARCHAR}
  )
 </insert>
</mapper>

main方法

@SpringBootApplication
@ComponentScan(basePackages={"com.coder520.mamabike"})
@MapperScan(basePackages="com.demo.user.mapper")
public class MamaBikeApplication {
 public static void main(String[] args) {
  SpringApplication.run(MamaBikeApplication.class, args);
 }
}

需要注意的是,dao層接口spring怎么會知道呢?這里就需要@MapperScan(basePackages="com.demo.user.mapper") 這個注解來指定mapper接口的位置。用@ComponentScan(basePackages={"com.coder520.mamabike"})這個注解來讓spring掃描我們指定包下的注解。

如果我們不用@MapperScan這個注解的話,也可以在接口類的上方加上@Mapper這個注解也可以。

總結

以上所述是小編給大家介紹的springboot整合mybatis中的問題及出現的一些問題小結,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI