1234567891011121314151617 |
- #spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
- #spring.datasource.username=postgres
- #spring.datasource.password=123456
- #spring.datasource.driverClassName=org.postgresql.Driver
- #spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
- #spring.jpa.properties.hibernate.hbm2ddl.auto=update
- server:
- port: 8866
- spring:
- datasource:
- driver-class-name: org.postgresql.Driver
- url: jdbc:postgresql://localhost:5432/postgres
- username: postgres
- password: 123456
- mybatis:
- mapper-locations: classpath:mapper/*.xml
|