application.properties 1.0 KB

123456789101112131415161718192021222324252627282930
  1. # Http server port
  2. server.port=7700
  3. spring.profiles.active=@profiles.active@
  4. spring.main.banner-mode=log
  5. spring.jpa.open-in-view=false
  6. spring.data.mongodb.repositories.type=none
  7. logging.level.org.mongodb=warn
  8. logging.config: classpath:logback-plus.xml
  9. # Configuration for uploading files.
  10. spring.servlet.multipart.enabled=true
  11. spring.servlet.multipart.file-size-threshold=0
  12. spring.servlet.multipart.max-file-size=209715200
  13. spring.servlet.multipart.max-request-size=209715200
  14. ###### PowerJob transporter configuration ######
  15. oms.transporter.active.protocols=AKKA,HTTP
  16. oms.transporter.main.protocol=HTTP
  17. oms.akka.port=10086
  18. oms.http.port=10010
  19. # Prefix for all tables. Default empty string. Config if you have needs, i.e. pj_
  20. oms.table-prefix=pj_
  21. # Actuator 监控端点的配置项
  22. spring.application.name: ruoyi-powerjob-server
  23. management.endpoints.web.exposure.include=*
  24. management.endpoint.health.show-details=ALWAYS
  25. management.endpoint.logfile.external-file=./logs/ruoyi-powerjob-server.log
  26. management.health.mongo.enabled=${oms.mongodb.enable}