Advertisement
Guest User

sda

a guest
Nov 22nd, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. #UniWeb configuration
  2. DIRECTORY = D:/tellerUniWebPath
  3.  
  4. #UniWeb version
  5. version = 0.0.1
  6.  
  7. ######################################################################## MYSQL Data Base Configuration ########################################################################
  8.  
  9. ### Hibernate Properties
  10. #hibernate.dialect = org.hibernate.dialect.MySQLDialect
  11. #
  12. ### Uniweb Configuration
  13. #hibernate.connection.driver_class=com.mysql.jdbc.Driver
  14. #hibernate.connection.url=jdbc:mysql://localhost:3306/uniweb_deploy
  15. #hibernate.connection.username=root
  16. #hibernate.connection.password=root
  17. #
  18. ## WorkFlow Configuration
  19. #wflow.driverClassName = com.mysql.jdbc.Driver
  20. #wflow.url = jdbc:mysql://localhost:3306/workflow_deploy
  21. #wflow.configOn = true
  22. #wflow.username = root
  23. #wflow.password = root
  24.  
  25. ######################################################################## FIN MYSQL Data Base Configuration ########################################################################
  26.  
  27.  
  28. ######################################################################## SQLSERVER Data Base Configuration ########################################################################
  29.  
  30. # Hibernate Properties
  31. hibernate.dialect = org.hibernate.dialect.SQLServerDialect
  32.  
  33. # Uniweb Configuration
  34. hibernate.connection.driver_class = com.microsoft.sqlserver.jdbc.SQLServerDriver
  35. hibernate.connection.url = jdbc\:sqlserver\://localhost\:1433;databaseName\=uniweb
  36. hibernate.connection.username = sa
  37. hibernate.connection.password = Accusys123*
  38.  
  39. # WorkFlow Configuration
  40. wflow.driverClassName = com.microsoft.sqlserver.jdbc.SQLServerDriver
  41. wflow.url = jdbc\:sqlserver\://localhost\:1433;databaseName\=workflow
  42. wflow.username = sa
  43. wflow.password = Accusys123*
  44. wflow.configOn = true
  45.  
  46. ######################################################################## FIN SQLSERVER Data Base Configuration ########################################################################
  47.  
  48. # Connection Pool
  49. #hibernate.connection.provider_class=org.hibernate.connection.C3P0ConnectionProvider
  50. #hibernate.connection.provider_class=org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider
  51. #hibernate.c3p0.min_size=5
  52. #hibernate.c3p0.max_size=25
  53. #hibernate.c3p0.timeout=1500
  54. #hibernate.c3p0.max_statements=50
  55. #hibernate.c3p0.idle_test_period=3000
  56. #hibernate.c3p0.acquire_increment=1
  57. #hibernate.c3p0.preferredTestQuery=SELECT 1
  58. #hibernate.show_sql = false
  59. #hibernate.hbm2ddl.auto = update
  60. hibernate.globally_quoted_identifiers = true
  61.  
  62. #Language default
  63. language = es
  64. country = AR
  65.  
  66. #carga a demanda del menu horizontal
  67. loadMenuOnDemand = false
  68.  
  69. #Carga el footer en la pantalla.
  70. footerRequired = false
  71.  
  72. #Llave y vector de inicialización necesarios para el cifrado en AES
  73. AES-master-key = ROLLUEXKITTY1294
  74. AES-init-array = ADIQ561QEFC89QFs
  75.  
  76. #Llave necesaria para el cifrado en TripleDES
  77. DES-master-key = 4921YTTIKXEULLOR
  78.  
  79. #Log
  80. fileLocal = C:/logs/logAuditoriaXX
  81. level = DEBUG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement