1. 程式人生 > 程式設計 >springboot配置mysql連線的例項程式碼

springboot配置mysql連線的例項程式碼

一:匯入pmo.xm配置包

mysql庫連線、druid連線池、mybatis元件

<!-- 使用MySQL資料庫-->
 	<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檔案配置

#專案工程資訊
spring:
#Mysql資料庫資訊
 datasource:
 driver-class-name: com.mysql.cj.jdbc.Driver
 url: jdbc:mysql://連線IP地址:埠/資料庫名?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC
 username: 使用者名稱
 password: 密碼
 type: com.alibaba.druid.pool.DruidDataSource
 druid:
  #下面為連線池的補充設定,應用到上面所有資料來源中
  initial-size: 5 #初始化大小,最小,最大
  min-idle: 5 #最小,最大
  max-active: 20 #最大
  max-wait: 60000 #配置獲取連線等待超時的時間
  time-between-eviction-runs-millis: 60000 #配置間隔多久才進行一次檢測,檢測需要關閉的空閒連線,單位是毫秒
  min-evictable-idle-time-millis: 300000 #配置一個連線在池中最小生存的時間,單位是毫秒
  validation-query: SELECT 1 FROM DUAL
  test-while-idle: true
  test-on-borrow: false
  test-on-return: false
  pool-prepared-statements: true #開啟PSCache,並且指定每個連線上PSCache的大小
  max-pool-prepared-statement-per-connection-size: 20 #配置監控統計攔截的filters,去掉後監控介面sql無法統計,'wall'用於防火牆
  filters: stat,wall
  use-global-data-source-stat: true
  connect-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000 #通過connectProperties屬性來開啟mergeSql功能;慢SQL記錄
  #配置監控伺服器
  stat-view-servlet:
  login-username: admin
  login-password: 123456
  reset-enable: false
  url-pattern: /druid/*
  web-stat-filter:
  url-pattern: /* #新增過濾規則
  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>

到此這篇關於springboot配置mysql連線的文章就介紹到這了,更多相關springboot配置mysql連線內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!