springboot的application.yml如何写
时间: 2023-04-04 10:04:19 浏览: 115
springboot application.yml配置学习.docx
你可以这样写:
```
server:
port: 8080
servlet:
context-path: /myapp
spring:
datasource:
url: jdbc:mysql://localhost:3306/mydb
username: root
password: password
driver-class-name: com.mysql.jdbc.Driver
jpa:
hibernate:
ddl-auto: update
show-sql: true
```
这是一个简单的示例,你可以根据你的应用程序需求进行修改。
阅读全文