Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <subsystem xmlns="urn:jboss:domain:datasources:4.0">
  2. <datasources>
  3. <datasource jta="false" jndi-name="java:jboss/datasources/wflydevelopment" pool-name="wflydevelopment" enabled="true">
  4. <connection-url>
  5. jdbc:postgresql://localhost:5432/ticketsystem
  6. </connection-url>
  7. <driver-class>org.postgresql.Driver</driver-class>
  8. <driver>postgresql</driver>
  9. <security>
  10. <user-name>jboss</user-name>
  11. <password>jboss</password>
  12. </security>
  13. </datasource>
  14. <datasource jndi-name="java:jboss/datasources/ExampleDS" pool-name="ExampleDS" enabled="true" use-java-context="true">
  15. <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE</connection-url>
  16. <driver>h2</driver>
  17. <security>
  18. <user-name>sa</user-name>
  19. <password>sa</password>
  20. </security>
  21. </datasource>
  22. <drivers>
  23. <driver name="postgresql" module="org.postgresql"/>
  24. <driver name="h2" module="com.h2database.h2">
  25. <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
  26. </driver>
  27. </drivers>
  28. </datasources>
  29. </subsystem>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement