crss-meterprocess-app-devoracle.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. spring:
  2. crss-main:
  3. datasource:
  4. jdbcUrl: jdbc:oracle:thin:@192.168.235.6:1521:ORCL
  5. username: crss_meterprocess_main
  6. password: crss
  7. driverClassName: oracle.jdbc.driver.OracleDriver
  8. connectionTimeout: 10000
  9. maxPoolSize: 20
  10. crss-registration:
  11. datasource:
  12. jdbcUrl: jdbc:postgresql://localhost:5432/crss_reg
  13. username: postgres
  14. password: postgres
  15. driverClassName: org.postgresql.Driver
  16. connectionTimeout: 10000
  17. maxPoolSize: 20
  18. jpa:
  19. show-sql: false
  20. generate-ddl: true
  21. properties:
  22. hibernate:
  23. dialect: org.hibernate.dialect.Oracle10gDialect
  24. ddl-auto: update
  25. hbm2ddl:
  26. import_files:
  27. # prevent batch job from running on app start
  28. batch:
  29. job:
  30. enabled: false
  31. #liquibase:
  32. # change-log: classpath:/db/db.changelog-master.xml
  33. server:
  34. port: 8081
  35. undertow:
  36. accesslog:
  37. dir: target
  38. enabled: true
  39. pattern: combined
  40. compression:
  41. enabled: true
  42. min-response-size: 1
  43. #security:
  44. # oauth2:
  45. # client:
  46. # accessTokenUri: http://localhost:8082/oauth/access_token
  47. # userAuthorizationUri: http://localhost:8082/oauth/authorize
  48. # clientId: crss
  49. # clientSecret: crsssecret
  50. # authorized-grant-types: authorization_code,refresh_token,password
  51. # scope: openid
  52. # access-token-validity-seconds: 3600
  53. # resource:
  54. # userInfoUri: http://localhost:8082/user
  55. logging:
  56. level:
  57. com.pemc: DEBUG
  58. com.netflix: DEBUG
  59. org.springframework.cloud: DEBUG