91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

springboot與mybatis整合的方法

發布時間:2022-04-07 14:04:39 來源:億速云 閱讀:111 作者:iii 欄目:編程語言

這篇文章主要介紹“springboot與mybatis整合的方法”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“springboot與mybatis整合的方法”文章能幫助大家解決問題。

整合MyBatis

新建Spring Boot項目,或以Chapter1為基礎來操作

pom.xml中引入依賴

  • 這里用到spring-boot-starter基礎和spring-boot-starter-test用來做單元測試驗證數據訪問

  • 引入連接mysql的必要依賴mysql-connector-java

  • 引入整合MyBatis的核心依賴mybatis-spring-boot-starter

  • 這里不引入spring-boot-starter-jdbc依賴,是由于mybatis-spring-boot-starter中已經包含了此依賴

<parent>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-parent</artifactId>
 <version>1.3.2.RELEASE</version>
 <relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
 <dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter</artifactId>
 </dependency>
 <dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-test</artifactId>
 <scope>test</scope>
 </dependency>
 <dependency>
 <groupId>org.mybatis.spring.boot</groupId>
 <artifactId>mybatis-spring-boot-starter</artifactId>
 <version>1.1.1</version>
 </dependency>
 <dependency>
 <groupId>mysql</groupId>
 <artifactId>mysql-connector-java</artifactId>
 <version>5.1.21</version>
 </dependency>
</dependencies>

同之前介紹的使用jdbc和spring-data連接數據庫一樣,在application.properties中配置mysql的連接配置

spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

同其他Spring Boot工程一樣,簡單且簡潔的的完成了基本配置,下面看看如何在這個基礎下輕松方便的使用MyBatis訪問數據庫。

使用MyBatis

在Mysql中創建User表,包含id(BIGINT)、name(INT)、age(VARCHAR)字段。同時,創建映射對象User

public class User {
  private Long id;
  private String name;
  private Integer age;
  // 省略getter和setter
}

創建User映射的操作UserMapper,為了后續單元測試驗證,實現插入和查詢操作

@Mapper
public interface UserMapper {
  @Select("SELECT * FROM USER WHERE NAME = #{name}")
  User findByName(@Param("name") String name);
  @Insert("INSERT INTO USER(NAME, AGE) VALUES(#{name}, #{age})")
  int insert(@Param("name") String name, @Param("age") Integer age);
}

創建Spring Boot主類

@SpringBootApplication
public class Application {
 public static void main(String[] args) {
 SpringApplication.run(Application.class, args);
 }
}

創建單元測試

測試邏輯:插入一條name=AAA,age=20的記錄,然后根據name=AAA查詢,并判斷age是否為20
測試結束回滾數據,保證測試單元每次運行的數據環境獨立

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Application.class)
public class ApplicationTests {
 @Autowired
 private UserMapper userMapper;
 @Test
 @Rollback
 public void findByName() throws Exception {
 userMapper.insert("AAA", 20);
 User u = userMapper.findByName("AAA");
 Assert.assertEquals(20, u.getAge().intValue());
 }
}

關于“springboot與mybatis整合的方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

都江堰市| 高陵县| 长丰县| 华宁县| 怀安县| 拉萨市| 宣汉县| 曲阳县| 黎平县| 平遥县| 丽江市| 射阳县| 儋州市| 沭阳县| 汨罗市| 陕西省| 台北市| 嘉兴市| 巧家县| 贵定县| 特克斯县| 岢岚县| 远安县| 鹤庆县| 庆阳市| 金平| 双柏县| 宜城市| 土默特右旗| 根河市| 叶城县| 监利县| 利辛县| 枣强县| 安多县| 东乌珠穆沁旗| 玛曲县| 冷水江市| 高碑店市| 会泽县| 镇坪县|