jooq/jOOQ-examples/jOOQ-javaee-example
2019-05-16 08:03:13 +02:00
..
src/main Change log4j2.xml files to no longer log log4j debug messages 2019-05-16 08:03:13 +02:00
.gitignore
LICENSE.txt [#5754] Remove copyright (and dates) from file headers 2017-01-02 17:14:26 +01:00
pom.xml [#8434] Support H2 v1.4.198 array syntax 2019-04-10 11:12:28 +02:00
README.md

Thanks for downloading jOOQ. Please visit http://www.jooq.org for more information.

To install and run this example, simply check it out and run the following Maven command

$ pwd
/path/to/checkout/dir
$ cd jOOQ-examples/jOOQ-javaee-example
...
$ mvn clean install

After the above, you should find a jooq-javaee-example.war file in

$ pwd
/path/to/checkout/dir
$ cd jOOQ-examples/jOOQ-javaee-example/target
...

You can deploy this war file in your WildFly AS or any other application server. The example will use an embedded H2 database, which should be pre-filled with the library example H2 database. It uses a non-managed DataSource, which is configured and consumed directly by the application itself.

For more information about how to setup a WildFly project using EJB, please visit the WildFly Quickstart projects, e.g.: https://github.com/wildfly/quickstart/tree/master/ejb-in-war