SpringBoot使用資料庫
這一篇簡單介紹一下SpringBoot配置資料庫的配置(依賴和application.properties),以下全是以本地資料庫為例子,具體用戶名密碼地址都根據實際去修改。
Mysql資料庫:
pom文件:
dependency
groupIdmysql/groupId
artifactIdmysql-connector-java/artifactId
scoperuntime/scope
/dependency
application.properties:
##資料庫地址
spring.datasource.url=jdbc:mysql://localhost:3306/test?characterEncoding=utf8useSSL=false
##資料庫用戶名
spring.datasource.username=root
##資料庫密碼
spring.datasource.password=root
##資料庫驅動
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
Sql Server資料庫:
pom文件:
dependency
groupIdcom.microsoft.sqlserver/groupId
artifactIdmssql-jdbc/artifactId
scoperuntime/scope
/dependency
application.properties:
##資料庫地址
spring.datasource.url=jdbc:sqlserver://192.168.16.218:1433;databaseName=dev_btrpawn
##資料庫用戶名
spring.datasource.username=sa
##資料庫密碼
spring.datasource.password=p@ssw0rd
##資料庫驅動
spring.datasource.driver-class-name=com.microsoft.sqlserver.jdbc.SQLServerDriver
oracle資料庫:
沒有找到倉庫中oracle得jar 需要自己下載然後加入
application.properties:
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
spring.datasource.url=jdbc:oracle:thin:@localhost:1521:orcl
spring.datasource.username=dalaoyang
spring.datasource.password=dalaoyang123
mongodb資料庫:
pom文件:
dependencies
dependency
groupIdorg.springframework.boot/groupId
artifactIdspring-boot-starter-data-mongodb/artifactId
/dependency
/dependencies
application.properties:
spring.data.mongodb.uri=mongodb://localhost:27017/test
h2資料庫:
pom文件:
dependency
groupIdcom.h2database/groupId
artifactIdh2/artifactId
scoperuntime/scope
/dependency
application.properties:
spring.datasource.url=jdbc:h2:file:D:/roncoo_h2/roncoo_spring_boot;AUTO_SERVER=TRUE;DBCLOSE_ON_EXIT=FALSE
spring.datasource.username=sa
spring.datasource.password=
※三種推薦使用的單例模式解析
※從源碼角度分析 Kotlin by lazy 的實現
TAG:千鋒JAVA開發學院 |