application-dev.yml 731 B

123456789101112131415161718192021222324252627282930313233
  1. server:
  2. port: 8080
  3. spring:
  4. application:
  5. name: test02
  6. datasource:
  7. url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
  8. username: root
  9. password: 123456
  10. driver-class-name: com.mysql.cj.jdbc.Driver
  11. jpa:
  12. show-sql: true
  13. database: mysql
  14. hibernate:
  15. ddl-auto: update
  16. database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
  17. open-in-view: true
  18. #
  19. # #redis
  20. # redis:
  21. # host: 122.112.224.199
  22. # port: 6379
  23. # password: hm123456
  24. mybatis-plus:
  25. configuration:
  26. # log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
  27. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl