application.properties 的mysql配置
时间: 2023-10-27 20:08:34 浏览: 196
application.properties 之配置大全
application.properties 是 Spring Boot 项目中的一个配置文件,用于配置应用程序的属性。下面是一个示例 MySQL 数据库的配置:
```
spring.datasource.url=jdbc:mysql://localhost:3306/mydatabase
spring.datasource.username=myusername
spring.datasource.password=mypassword
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
```
其中,`spring.datasource.url` 指定了数据库的连接 URL,`spring.datasource.username` 和 `spring.datasource.password` 分别指定了数据库的用户名和密码,`spring.datasource.driver-class-name` 指定了 JDBC 驱动程序的类名。
如果你想要使用其他的数据库,只需要修改相应的配置即可。例如,如果你想要使用 PostgreSQL 数据库,可以将 `spring.datasource.url` 修改为:
```
spring.datasource.url=jdbc:postgresql://localhost:5432/mydatabase
```
阅读全文