application.yml 563 B

1234567891011121314151617
  1. #spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
  2. #spring.datasource.username=postgres
  3. #spring.datasource.password=123456
  4. #spring.datasource.driverClassName=org.postgresql.Driver
  5. #spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
  6. #spring.jpa.properties.hibernate.hbm2ddl.auto=update
  7. server:
  8. port: 8866
  9. spring:
  10. datasource:
  11. driver-class-name: org.postgresql.Driver
  12. url: jdbc:postgresql://localhost:5432/postgres
  13. username: postgres
  14. password: 123456
  15. mybatis:
  16. mapper-locations: classpath:mapper/*.xml