php转java 系列2 Spring boo 链接数据库jdbc
JDBC
首先创建一个新项目,在创建项目时要注意导入依赖,
在项目创建成功后就会看到在 pom.xml 文件中找到,但是如果在创建项目的时候没有导入,就要在pom.xml中手动的添加依赖;
org.springframework.boot
spring-boot-starter-jdbc
org.springframework.boot
spring-boot-starter-web
mysql
mysql-connector-java
runtime
org.springframework.boot
spring-boot-starter-test
test
连接数据库
在连接数据库之后,编写数据库配置文件
#访问根路径
#应用名称
spring.application.name=springboot-demo
#访问端口号
server.port=8080#编码格式
server.tomcat.uri-encoding=utf-8#数据库相关配置
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://115.29.223.160:3306/wangzhan
spring.datasource.username=zhangwei
spring.datasource.password=zhang111
spring.datasource.max-idle=10spring.datasource.max-wait=10000spring.datasource.min-idle=5spring.datasource.initial-size=5#session生命周期
server.servlet.session.timeout=30m
原文:https://www.cnblogs.com/newmiracle/p/12730721.html