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

溫馨提示×

溫馨提示×

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

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

詳解SpringBoot 快速整合MyBatis(去XML化)

發布時間:2020-08-24 07:27:46 來源:腳本之家 閱讀:150 作者:yizhiwazi 欄目:編程語言

序言:

此前,我們主要通過XML來書寫SQL和填補對象映射關系。在SpringBoot中我們可以通過注解來快速編寫SQL并實現數據訪問。(僅需配置:mybatis.configuration.map-underscore-to-camel-case=true)。為了方便大家,本案例提供較完整的層次邏輯SpringBoot+MyBatis+Annotation。

具體步驟

1. 引入依賴

在pom.xml 引入ORM框架(Mybaits-Starter)和數據庫驅動(MySQL-Conn)的依賴。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <!--繼承信息 -->
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.0.M4</version>
    <relativePath/>
  </parent>

  <!--依賴管理 -->
  <dependencies>
    <dependency> <!--添加Web依賴 -->
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency> <!--添加Mybatis依賴 -->
      <groupId>org.mybatis.spring.boot</groupId>
      <artifactId>mybatis-spring-boot-starter</artifactId>
      <version>1.3.1</version>
    </dependency>
    <dependency><!--添加MySQL驅動依賴 -->
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <scope>runtime</scope>
    </dependency>
    <dependency><!--添加Test依賴 -->
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

2. 添加數據源

在application.yml 添加數據源,以及開啟Mybaits的駝峰映射功能。

spring:
 datasource:
  url: jdbc:mysql://localhost:3306/socks?useSSL=false
  username: root
  password: root
  driver-class-name: com.mysql.jdbc.Driver

mybatis:
 configuration:
  map-underscore-to-camel-case: true #開啟駝峰映射

3. 編寫數據層代碼

// POJO類如下:
public class User {
  private String userId;
  private String username;
  private String password;
  // Getters & Setters ..
}
// 數據層代碼如下:
public interface UserMapper {

  @Select("select * from t_user where 1=1")
  List<User> list();

  @Select("select * from t_user where username like #{username}")
  List<User> findByUsername(String username);

  @Select("select * from t_user where user_id like #{userId}")
  User getOne(String userId);

  @Delete("delete from t_user where user_id like #{userId}")
  int delete(String userId);
}

4. 添加數據庫記錄

在Navicat 連接本地數據庫,隨便打開查詢窗口,復制下面這段腳本,點擊執行即可。

DROP DATABASE IF EXISTS `socks`;
CREATE DATABASE `socks`;
USE `SOCKS`;
DROP TABLE IF EXISTS `t_user`;
CREATE TABLE `t_user` (
 `USER_ID` varchar(50) ,
 `USERNAME` varchar(50) ,
 `PASSWORD` varchar(50) 
) ;

INSERT INTO `t_user` VALUES ('1', 'admin', 'admin');
INSERT INTO `t_user` VALUES ('2', 'yizhiwazi', '123456');

5. 啟動項目

@SpringBootApplication
@MapperScan("com.hehe.mapper") //掃描Mapper接口
public class MybatisApplication {

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

6. 單元測試

import static org.assertj.core.api.Assertions.assertThat;

@RunWith(SpringRunner.class)
@SpringBootTest
public class MybatisApplicationTest {

  @SuppressWarnings("all")
  @Autowired
  UserMapper userMapper;

  @Test
  public void test_db() {
    //開始進行測試
    assertThat(userMapper.list().size()).isGreaterThan(1);
    assertThat(userMapper.getOne("1")).isNotEqualTo(null);
    assertThat(userMapper.getOne("xxx")).isEqualTo(null);
  }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

高清| 东山县| 汾阳市| 临清市| 安溪县| 长乐市| 陵川县| 和硕县| 江油市| 乌审旗| 桃源县| 香格里拉县| 北安市| 上思县| 鄂温| 江山市| 天全县| 伊春市| 瓦房店市| 福州市| 望江县| 平遥县| 翁牛特旗| 同德县| 昂仁县| 康保县| 葵青区| 时尚| 太保市| 华宁县| 岗巴县| 当涂县| 旅游| 定南县| 平凉市| 广德县| 台湾省| 平潭县| 渝北区| 舒城县| 上思县|