-
Notifications
You must be signed in to change notification settings - Fork 298
Java EE Inject
Michael O'Cleirigh edited this page Apr 12, 2011
·
1 revision
JavaEE Inject is a wicket module that provides integration through Java EE 5 resource injection. With JavaEE Inject you can use in your wicket components three annotations:
- @EJB
- @PersistenceUnit
- @Resource
The old example projects with Wicket 1.3-compatible source:
- A sample application demonstrating the use of @EJB and @Resource
- A sample application demonstrating the use of @PersistenceUnit and @Resource
The new examples are in the javaee-inject-parent project as javaee-inject-examples module. This example project is always maintained with the current version of Wicket (and Java EE).
You can always download the latest binary from the Sonatype Maven repository.
You only need the following Maven dependency for using the library:
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>javaee-inject</artifactId>
<version>${wicketstuff.version}</version>
</dependency>
- Filippo Diotalevi
- Maris Orbidans
- Peter Major