Skip to content

Commit

Permalink
Updated versions, readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mstahv committed Mar 25, 2015
1 parent edd1eac commit 0ff1e72
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# An example project about various JPA helper libraries for Java EE

Plain JPA is not necessary the most developer friendly way to implement JPA based persistency. This is an example project that introduces SpringData, its plain CDI cousin DeltaSpike Data and QueryDSL, which can make working with JPA persistency much more efficient (than with the raw API). The example app contains three EJB implementations for simple phonebook CRUD and shows how the tools can help to implement them.
Plain JPA is not necessary the most developer friendly way to implement JPA based persistency. This is an example project that introduces three awesome helper libraries, [SpringData](http://projects.spring.io/spring-data-jpa/), its plain CDI cousin [DeltaSpike Data](https://deltaspike.apache.org/documentation/data.html) and [QueryDSL](http://www.querydsl.com), which can make working with JPA much more efficient (than with the raw API). The example app contains three EJB different implementations for simple phonebook CRUD and shows how the tools can help to implement them.

This example has been built to support an article series on the same topic, but this might in the future contain examples of other JPA related helper libraries as well. The UI layer is built using Vaadin.
This example has been built to support an article series on the same topic, but this might in the future contain examples of other JPA related helper libraries as well. The UI layer is built using [Vaadin](https://vaadin.com/), but the actual meat is the EJB implementations.

To play around with the project, import it in to your favourite IDE and deploy to WilldFly using *mvn wildfly:run* (tested on Wildlfy , but should be easily portable).
24 changes: 11 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>org.vaadin</groupId>
<artifactId>vaadin-java-ee-essentials</artifactId>
<version>1.11-SNAPSHOT</version>
<version>1.11</version>
<type>pom</type>
<exclusions>
<!-- Using add-ons in this example via viritin,
Expand All @@ -39,35 +39,33 @@
<dependency>
<groupId>org.apache.deltaspike.modules</groupId>
<artifactId>deltaspike-data-module-api</artifactId>
<version>1.2.1</version>
<version>1.3.0</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.7.2.RELEASE</version>
</dependency>

<dependency>
<groupId>org.apache.deltaspike.modules</groupId>
<artifactId>deltaspike-data-module-impl</artifactId>
<version>1.3.0</version>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.7.2.RELEASE</version>
</dependency>

<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-core</artifactId>
<version>3.6.1</version>
<version>3.6.2</version>
</dependency>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-jpa</artifactId>
<version>3.6.1</version>
<version>3.6.2</version>
</dependency>



</dependencies>

<build>
Expand Down

0 comments on commit 0ff1e72

Please sign in to comment.