Spring boot 使用mysql實例詳解
開發(fā)階段用 H2即可,上線時,通過以下配置切換到mysql,spring boot將使用這個配置覆蓋默認(rèn)的H2。
1.建立數(shù)據(jù)庫:
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
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
您可能感興趣的文章:- Spring Boot Mysql 數(shù)據(jù)庫操作示例
- Spring Boot如何解決Mysql斷連問題
- Spring Boot 添加MySQL數(shù)據(jù)庫及JPA實例
- Spring Boot中使用jdbctemplate 操作MYSQL數(shù)據(jù)庫實例
- SpringBoot連接MYSQL數(shù)據(jù)庫并使用JPA進(jìn)行操作
- Spring Boot JPA訪問Mysql示例
- SpringBoot用JdbcTemplates訪問Mysql實例代碼
- SpringBoot入門系列之JPA mysql
- 詳解在Spring Boot中使用Mysql和JPA
- Spring Boot高級教程之Spring Boot連接MySql數(shù)據(jù)庫