您好,登錄后才能下訂單哦!
這篇文章主要介紹了SpringBoot整合mybatis簡單案例過程解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
1.在springboot項目中的pom.xml中添加mybatis的依賴
<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.1.1</version> </dependency>
2.在src/main/resources/application.yml中配置數據源信息
# DB Configation spring: datasource: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/springboot?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone = GMT username: root password: root # JAPConfigration jpa: database: mysql show-sql: true generate-ddl: true
在連接數據庫的過程中可能會出現SQLException,可能是時區問題導致的,加上url路徑后面的“serverTimezone = GMT”即可
3.在主啟動類的同級創建po包和mapper包,在po包中創建實體類,編寫pojo;在mapper包中創建mapper接口和mapper映射文件
mapper.java
package com.hxy.springbootdemo1.demo.mapper; import com.hxy.springbootdemo1.demo.pojo.MUser; import java.util.List; public interface UserMapper { List<MUser> getUserList(); }
mapper.xml
<?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.hxy.springbootdemo1.demo.mapper.UserMapper"> <select id="getUserList" resultType="com.hxy.springbootdemo1.demo.pojo.MUser"> select * from user </select> </mapper>
4.手動配置mybatis的包掃描
在主啟動類添加@MapperScan
如果出現錯誤:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.offcn.mapper.UserMapper.getUserList
有如下兩種方法解決:
1 把映射文件 放到resources 目錄下 結構目錄一模一樣
2 修改配置文件pom.xml
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.*</include> </includes> <filtering>false</filtering> </resource> </resources> </build>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。