application.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. spring:
  2. datasource:
  3. type: com.zaxxer.hikari.HikariDataSource
  4. driver-class-name: com.mysql.jdbc.Driver
  5. hikari:
  6. minimum-idle: 1
  7. maximum-pool-size: 6
  8. auto-commit: true
  9. idle-timeout: 60000
  10. pool-name: DatebookHikariCP
  11. max-lifetime: 1800000
  12. connection-timeout: 30000
  13. connection-test-query: select 1
  14. boot:
  15. admin:
  16. context-path: /admin
  17. main:
  18. allow-bean-definition-overriding: true
  19. mybatis-plus:
  20. mapper-locations: classpath*:mapper/**/*.xml
  21. global-config:
  22. db-config:
  23. id-type: auto
  24. table-underline: true
  25. column-like: true
  26. refresh: true
  27. configuration:
  28. map-underscore-to-camel-case: true
  29. cache-enabled: true #配置的缓存的全局开关
  30. lazyLoadingEnabled: true #延时加载的开关
  31. multipleResultSetsEnabled: true #延时加载一个属性时会加载该对象全部属性,否则按需加载属性
  32. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  33. #服务注册于发现配置
  34. eureka:
  35. instance:
  36. hostname: localhost
  37. prefer-ip-address: true
  38. lease-renewal-interval-in-seconds: 15
  39. lease-expiration-duration-in-seconds: 32
  40. ip-address: 192.168.1.133
  41. metadata-map:
  42. startup: ${random.int}
  43. tags: config
  44. client:
  45. register-with-eureka: true
  46. fetch-registry: true
  47. service-url:
  48. defaultZone: http://envir:envir@${eureka.instance.ip-address}:${server.port}/eureka/
  49. registry-fetch-interval-seconds: 5
  50. instance-info-replication-interval-seconds: 20
  51. initial-instance-info-replication-interval-seconds: 45
  52. eureka-server-read-timeout-seconds: 10
  53. eureka-server-connect-timeout-seconds: 8
  54. server:
  55. enable-self-preservation: false
  56. eviction-interval-timer-in-ms: 60000
  57. management:
  58. endpoints:
  59. web:
  60. exposure:
  61. include: '*'
  62. endpoint:
  63. health:
  64. show-details: always
  65. logging:
  66. path: ./.logs