diff --git a/WildFly.md b/WildFly.md new file mode 100644 index 0000000..ea13496 --- /dev/null +++ b/WildFly.md @@ -0,0 +1,69 @@ +[WildFly](http://www.wildfly.org) is a Java EE application server. + +# DataSource configuration +``` + + jdbc:pgsql://localhost:5432/test + false + 0 + 0 + pgsql + + user + secret + + + true + + + + + nowarn + 32 + + +``` +# XADataSource +``` + + localhost + 5432 + test + false + 0 + 0 + pgsql + + user + secret + + + true + + + + + nowarn + 32 + + +``` +# Driver configuration +``` + + com.impossibl.postgres.jdbc.xa.PGXADataSource + +``` + +## module.xml +``` + + + + + + + + + +```