溫馨提示×

溫馨提示×

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

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

使用springboot怎么對mysql進(jìn)行連接

發(fā)布時(shí)間:2021-01-06 15:29:33 來源:億速云 閱讀:242 作者:Leah 欄目:開發(fā)技術(shù)

使用springboot怎么對mysql進(jìn)行連接?相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

一:導(dǎo)入pmo.xm配置包

mysql庫連接、druid連接池、mybatis組件

<!-- 使用MySQL數(shù)據(jù)庫-->
 	<dependency>
  <groupId>mysql</groupId>
  <artifactId>mysql-connector-java</artifactId>
  <scope>runtime</scope>
 </dependency>
 <!--druid連接池-->
 <dependency>
  <groupId>com.alibaba</groupId>
  <artifactId>druid-spring-boot-starter</artifactId>
  <version>1.1.10</version>
 </dependency>
 <!-- 使用mybatis-->
 <dependency>
  <groupId>org.mybatis.spring.boot</groupId>
  <artifactId>mybatis-spring-boot-starter</artifactId>
  <version>${mybatis.version}</version>
 </dependency>

配置掃描文件

<build>
  <!--掃描xml文件-->
  <resources>
   <resource>
    <directory>src/main/java</directory>
    <includes>
     <include>**/ *.xml</include>
    </includes>
    <filtering>true</filtering>
   </resource>
   <resource>
    <directory>src/main/resources</directory>
    <includes>
     <include>*</include>
    </includes>
    <filtering>true</filtering>
   </resource>
  </resources>
 </build>

二:application.yml文件配置

#項(xiàng)目工程信息
spring:
#Mysql數(shù)據(jù)庫信息
 datasource:
 driver-class-name: com.mysql.cj.jdbc.Driver
 url: jdbc:mysql://連接IP地址:端口/數(shù)據(jù)庫名?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC
 username: 用戶名
 password: 密碼
 type: com.alibaba.druid.pool.DruidDataSource
 druid:
  #下面為連接池的補(bǔ)充設(shè)置,應(yīng)用到上面所有數(shù)據(jù)源中
  initial-size: 5 #初始化大小,最小,最大
  min-idle: 5 #最小,最大
  max-active: 20 #最大
  max-wait: 60000 #配置獲取連接等待超時(shí)的時(shí)間
  time-between-eviction-runs-millis: 60000 #配置間隔多久才進(jìn)行一次檢測,檢測需要關(guān)閉的空閑連接,單位是毫秒
  min-evictable-idle-time-millis: 300000 #配置一個(gè)連接在池中最小生存的時(shí)間,單位是毫秒
  validation-query: SELECT 1 FROM DUAL
  test-while-idle: true
  test-on-borrow: false
  test-on-return: false
  pool-prepared-statements: true #打開PSCache,并且指定每個(gè)連接上PSCache的大小
  max-pool-prepared-statement-per-connection-size: 20 #配置監(jiān)控統(tǒng)計(jì)攔截的filters,去掉后監(jiān)控界面sql無法統(tǒng)計(jì),'wall'用于防火墻
  filters: stat,wall
  use-global-data-source-stat: true
  connect-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000 #通過connectProperties屬性來打開mergeSql功能;慢SQL記錄
  #配置監(jiān)控服務(wù)器
  stat-view-servlet:
  login-username: admin
  login-password: 123456
  reset-enable: false
  url-pattern: /druid/*
  web-stat-filter:
  url-pattern: /* #添加過濾規(guī)則
  exclusions: "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*" #忽略過濾格式
#mybatis集成
mybatis:
 mapper-locations: classpath:com/../../mapper/*.xml

三:編寫dao層接口

使用注解:@Mapper

四:編寫xml文件sql語句

<?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="dao層類路徑">
	<!--查詢-->
	<select></select>
	<!--新增-->
	<insert></insert>
	<!--修改-->
	<update></update>
	<!--刪除-->
	<delete></delete>
	......
</mapper>

看完上述內(nèi)容,你們掌握使用springboot怎么對mysql進(jìn)行連接的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

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

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

AI