Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ptiringo
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ptiringo/32cac59c75eeea338a42 to your computer and use it in GitHub Desktop.
Save ptiringo/32cac59c75eeea338a42 to your computer and use it in GitHub Desktop.
wildfly datasource
<?xml version="1.0" encoding="UTF-8"?>
<datasources xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.ironjacamar.org/doc/schema"
xsi:schemaLocation="http://www.ironjacamar.org/doc/schema http://www.ironjacamar.org/doc/schema/datasources_1_1.xsd">
<datasource jndi-name="java:jboss/jdbc/HogeSystem" pool-name="HogeSystemDS">
<connection-url>jdbc:h2:file:~/hogesystem</connection-url>
<driver>h2</driver>
<security>
<user-name>sa</user-name>
<password>password</password>
</security>
</datasource>
</datasources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment