Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.79 KB

README.adoc

File metadata and controls

53 lines (37 loc) · 1.79 KB

wicket-war: Wicket Framework used in a WAR.

Demonstrates how to use the Wicket Framework 7.x with the JBoss server using the Wicket Java EE integration packaged as a WAR

What is it?

This is an example of how to use Wicket Framework 7.x with WildFly, leveraging features of {javaVersion}, using the Wicket-Stuff Java EE integration.

Features used:

  • Injection of @PersistenceContext

  • Injection of a value from web.xml using @Resource

  • Injection of a stateless session bean using @EJB

This is a WAR version.

Access the application

Access the running application in a browser at the following URL: http://localhost:8080/{artifactId}/

You will see a page with a table listing user entities. Initially, this table is empty. By clicking a link, you can add more users.

Debug the Application

If you want to debug the source code or look at the Javadocs of any library in the project, run either of the following commands to pull them into your local repository. The IDE should then detect them.

$ mvn dependency:sources
$ mvn dependency:resolve -Dclassifier=javadoc