Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dbconfig.properties 1.1KB

123456789101112131415161718192021222324252627
  1. #Horizon Workflow DB base info
  2. horizon.identifier=system
  3. horizon.databaseType=Oracle
  4. horizon.isDefault=true
  5. horizon.lobProcessorClass=com.horizon.db.xlob.XlobProcessorImpl4Oracle
  6. horizon.lobBufferSize=1048576
  7. horizon.connectionType=jdbc
  8. horizon.jndiName=
  9. #datasource config
  10. horizon.db.driverClass=oracle.jdbc.driver.OracleDriver
  11. horizon.db.maxPoolSize=15
  12. horizon.db.minPoolSize=3
  13. horizon.db.initialPoolSize=3
  14. horizon.db.maxIdelTime=0
  15. horizon.db.jdbcUrl=jdbc:oracle:thin:@172.16.7.51:10002/pdb
  16. horizon.db.username=zksf
  17. horizon.db.password=1234
  18. #数据源类型 默认tomcat-jdbc
  19. horizon.db.datasourceType=tomcat-jdbc
  20. # 用于验证数据库连接是否可用的SQL语句,不同数据库sql语句不同
  21. # mysql,mysql8,dm,tidb;sqlserver,oscar: SELECT 1
  22. # oracle: SELECT 1 FROM DUAL
  23. # postgresql,gbase,highgo,gauss,upbase: SELECT VERSION()
  24. # db2: SELECT 1 FROM SYSIBM.SYSDUMMY1
  25. # gbase8s: SELECT 1 FROM SYSUSERS
  26. # kingbase,kingbase8: SELECT 1 FROM SYS_STAT_ACTIVITY
  27. horizon.db.validationQuery=SELECT 1 FROM DUAL