溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SpringBoot2數(shù)據(jù)庫實(shí)例分析

發(fā)布時(shí)間:2022-03-22 13:36:49 來源:億速云 閱讀:193 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“SpringBoot2數(shù)據(jù)庫實(shí)例分析”,在日常操作中,相信很多人在SpringBoot2數(shù)據(jù)庫實(shí)例分析問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”SpringBoot2數(shù)據(jù)庫實(shí)例分析”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

1 數(shù)據(jù)庫連接

1.1 配置數(shù)據(jù)庫連接信息

??如果想要使用數(shù)據(jù)庫連接池連接數(shù)據(jù)庫進(jìn)行SQL操作的話,在SpringBoot中需要經(jīng)過如下三個(gè)步驟: 第一步: 導(dǎo)入jdbc開發(fā)的啟動(dòng)場景

 <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>

第二步: 導(dǎo)入數(shù)據(jù)庫驅(qū)動(dòng) 之所以框架底層沒有自動(dòng)導(dǎo)入數(shù)據(jù)庫的驅(qū)動(dòng),是因?yàn)椴煌臄?shù)據(jù)庫使用的驅(qū)動(dòng)不同,這需要用戶根據(jù)自己的需要來進(jìn)行選擇。雖然框架沒有對(duì)指定數(shù)據(jù)庫驅(qū)動(dòng)進(jìn)行自動(dòng)導(dǎo)入,但是對(duì)不同數(shù)據(jù)庫驅(qū)動(dòng)的版本都進(jìn)行了版本仲裁,也就是說我們可以直接導(dǎo)入無需定義版本號(hào)。當(dāng)然也可以自定義版本號(hào),maven會(huì)根據(jù)自身的就近依賴原則導(dǎo)入自定義的版本

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.32</version>
</dependency>

第三步: 配置數(shù)據(jù)庫連接的配置文件

# 設(shè)置數(shù)據(jù)庫
spring:
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/test
    username: root
    password: "123456"

1.2 整合Druid數(shù)據(jù)源

??SpringBoot框架中默認(rèn)使用的是Hikari數(shù)據(jù)源,這也就意味著如果要是想要修改數(shù)據(jù)源的話,無非就是兩種方法:自定義配置類、引入相應(yīng)的啟動(dòng)器依賴再配置配置文件

第一步: 引入Druid的啟動(dòng)器依賴

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>druid-spring-boot-starter</artifactId>
    <version>1.1.17</version>
</dependency>

第二步: 配置配置文件(選學(xué),框架一般都有默認(rèn)的配置)

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

    druid:
      aop-patterns: com.atguigu.admin.*  #監(jiān)控SpringBean
      filters: stat,wall     # 底層開啟功能,stat(sql監(jiān)控),wall(防火墻)

      stat-view-servlet:   # 配置監(jiān)控頁功能
        enabled: true
        login-username: admin
        login-password: admin
        resetEnable: false

      web-stat-filter:  # 監(jiān)控web
        enabled: true
        urlPattern: /*
        exclusions: '*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*'


      filter:
        stat:    # 對(duì)上面filters里面的stat的詳細(xì)配置
          slow-sql-millis: 1000
          logSlowSql: true
          enabled: true
        wall:
          enabled: true
          config:
            drop-table-allow: false

2 SpringBoot整合MyBatis

??mybatis開發(fā)的時(shí)候有兩種開發(fā)模式:使用配置文件進(jìn)行開發(fā)、純注解開發(fā),二者各有優(yōu)點(diǎn)。使用配置文件進(jìn)行開發(fā)在處理更加復(fù)雜的SQL語句的時(shí)候邏輯更加清晰,純注解開發(fā)比較適合簡單的SQL語句,于是我們可以在開發(fā)的時(shí)候混合使用兩種方法,這樣可以大大提升開發(fā)效率。

2.1 配置文件開發(fā)

第一步: 引入啟動(dòng)器依賴 小知識(shí):SpringBoot官方的所有技術(shù)啟動(dòng)器的命名都是spring-boot-starter-xxx而第三方技術(shù)的啟動(dòng)器命名則是xxx-spring-boot-starter。值得注意的是:MyBatis的啟動(dòng)器內(nèi)部引用了dbc開發(fā)的啟動(dòng)場景,所以無需重復(fù)引用

<dependency>
    <groupId>org.mybatis.spring.boot</groupId>
    <artifactId>mybatis-spring-boot-starter</artifactId>
    <version>2.1.4</version>
</dependency>

第二步: 編寫mapper接口并標(biāo)注@Mapper注解

@Mapper
public interface StuMapper {

    Stu queryBySid(int sid);
}

第三步: 編寫映射文件并綁定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.xiaochen.mapper.StuMapper">
    <select id="queryBySid" resultType="com.xiaochen.domain.Stu">
        select * from stu where sid=#{sid}
    </select>

</mapper>

第四步: 在配置文件中指定之前MyBatis配置文件的各種信息

# mybatis的所有配置
mybatis:
mapper-locations: classpath:com.xiaochen.mapper/*.xml
# 所有的全局配置文件的配置項(xiàng)在這下面配置
configuration:
# 開啟駝峰命名數(shù)據(jù)庫中字段值的下劃線‘_'加字母會(huì)被認(rèn)為是大寫
map-underscore-to-camel-case: true

2.2 純注解開發(fā)

第一步: 引入啟動(dòng)器依賴

<dependency>
    <groupId>org.mybatis.spring.boot</groupId>
    <artifactId>mybatis-spring-boot-starter</artifactId>
    <version>2.1.4</version>
</dependency>

第二步: 編寫mapper接口并標(biāo)注@Mapper注解,使用對(duì)應(yīng)的注解進(jìn)行SQL語句操作

@Mapper
public interface StuMapper {

    @Select("select * from stu where sid=#{sid}")
    Stu queryBySid(int sid);
}

3 SpringBoot整合MyBatis-Plus

3.1 普通的CRUD方法

??MyBatis-plus的啟動(dòng)器內(nèi)部不止引用了dbc開發(fā)的啟動(dòng)場景,還導(dǎo)入了MyBatis的啟動(dòng)器,所以這兩個(gè)都無需再重復(fù)引用 第一步: 引入啟動(dòng)器依賴

<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-boot-starter</artifactId>
    <version>3.4.1</version>
</dependency>

mapper層:

??編寫mapper接口標(biāo)注@Mapper注解,并繼承BaseMapper類。這是MyBatis-plus的獨(dú)有方式,這樣做的好處是繼承之后直接使用父類中已經(jīng)寫好的簡單CRUD方法,但是一些復(fù)雜的SQL業(yè)務(wù)還是需要使用映射文件來實(shí)現(xiàn)的,進(jìn)一步提高了代碼開發(fā)的效率

@Mapper
public interface StuMapper extends BaseMapper<Stu> {

}

??MyBatis-plus進(jìn)行數(shù)據(jù)庫表的增刪改查的時(shí)候,默認(rèn)把繼承BaseMapper類時(shí)傳進(jìn)去的泛型名稱當(dāng)做表名去查找,如果泛型與數(shù)據(jù)庫中的表名不對(duì)應(yīng)的話,可以在實(shí)體類使用注解標(biāo)識(shí),除此之外注解還可以用來標(biāo)識(shí)主鍵和非表中字段屬性

@NoArgsConstructor
@AllArgsConstructor
@Data
@TableName("stu")
public class Stu {
    // 表名該字段是定義的臨時(shí)變量,并不存在于數(shù)據(jù)庫的表中
    @TableField(exist = false)
    private String gender;

    // 標(biāo)明表的主鍵
    @TableId
    private int sid;
    private String sname;
    private String age;
    private String course;
    private int cardid;
}

??編寫映射文件并綁定mapper接口(如果有的話)。MyBatis-plus自動(dòng)配置好了默認(rèn)的mapper-locations,也就是映射文件的存放位置為classpath:/mapper/**/*.xml,于是我們就按照它的默認(rèn)規(guī)則在靜態(tài)資源路徑下mapper文件夾下。本案例中沒有映射文件,于是就不創(chuàng)建

??如果有需要的話,還可以在配置文件中指定MyBatis-plus配置文件的各種信息

service層:

service接口繼承IService類

public interface StuService extends IService<Stu> {

}

??service的實(shí)現(xiàn)類先是繼承ServiceImpl并傳兩個(gè)泛型(mapper接口,實(shí)體類),然后實(shí)現(xiàn)service接口

@Service
public class StuServiceImpl extends ServiceImpl<StuMapper, Stu> implements StuService {
    
}

controller層: 直接使用service繼承類的簡單方法

@Controller
public class TableController {

    @Autowired
    StuServiceImpl stuService;

    /**
     * 點(diǎn)擊Advanced table按鈕,進(jìn)行頁面轉(zhuǎn)發(fā),并攜帶一個(gè)表格數(shù)據(jù)
     * @param model 用于存儲(chǔ)數(shù)據(jù)
     * @return 頁面轉(zhuǎn)發(fā)forward 到 /table/dynamic_table.html
     */
    @GetMapping("/dynamic_table")
    public String dynamic_table(Model model) {
        // 從數(shù)據(jù)庫中查出user表進(jìn)行展示
        List<Stu> list = stuService.list();
        model.addAttribute("stus", list);
        return "/table/dynamic_table";
    }
}

3.2 MyBatis-plus的分頁實(shí)現(xiàn)

??MyBatis-plus的分頁功能實(shí)現(xiàn)需要先自定義一個(gè)配置類,向容器中注冊(cè)一個(gè)Interceptor

@Configuration
public class MyBatisConfig {

    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();

        PaginationInnerInterceptor paginationInnerInterceptor = new PaginationInnerInterceptor();
        paginationInnerInterceptor.setOverflow(true);
        paginationInnerInterceptor.setMaxLimit(500L);
        interceptor.addInnerInterceptor(paginationInnerInterceptor);
        return interceptor;
    }
}

然后就可以像普通的CRUD操作一樣,直接使用service繼承類的分頁的相關(guān)方法即可

@GetMapping("/dynamic_table")
public String dynamic_table(@RequestParam(value = "pn", defaultValue = "1")Integer pn,  Model model) {
    // 分頁從數(shù)據(jù)庫中查出stu表的所有數(shù)據(jù),當(dāng)前頁、總頁數(shù)、總條數(shù)……
    Page<Stu> stuPage = new Page<>(pn, 1);
    Page<Stu> page = stuService.page(stuPage);

    model.addAttribute("page", page);
    return "/table/dynamic_table";
}

到此,關(guān)于“SpringBoot2數(shù)據(jù)庫實(shí)例分析”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI