SpringBoot入门案例总结_spring

数据库配置

spring:
profiles:
active: prod

datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/dbgirl?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
username: root
password: 125937

jpa:
hibernate:
ddl-auto: create
show-sql: true