Last active
August 29, 2015 14:03
-
-
Save ptiringo/32cac59c75eeea338a42 to your computer and use it in GitHub Desktop.
wildfly datasource
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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