Spring boot 使用mysql实例详解
Spring boot 使用mysql实例详解
开发阶段用 H2即可,上线时,通过以下配置切换到mysql,spring boot将使用这个配置覆盖默认的H2。
1.建立数据库:
mysql -u root CREATE DATABASE springbootdb
2.pom.xml:
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency>
3.application.properties:
spring.datasource.url= jdbc:mysql://localhost:3306/springbootdb spring.datasource.username=root spring.datasource.password= spring.jpa.hibernate.ddl-auto=create-drop//none, validate, update, create-drop
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关推荐
emmm00 2020-11-17
王艺强 2020-11-17
aydh 2020-11-12
世樹 2020-11-11
zry 2020-11-11
URML 2020-11-11
spurity 2020-11-10
yifangs 2020-10-13
Andrea0 2020-09-18
Ida 2020-09-16
ltd00 2020-09-12
tufeiax 2020-09-03
xjd0 2020-09-10
greatboylc 2020-09-10
adsadadaddadasda 2020-09-08
疯狂老司机 2020-09-08
CoderToy 2020-11-16
ribavnu 2020-11-16
bianruifeng 2020-11-16