Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 802 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 802 Bytes

javaee-example

Coverage Status Build Status

An example of full-stack JavaEE Application with JPA, CDI and JSF

This is just a test, not to be taken as a template for production projects

Installation

Create the war file using Maven (with mvn clean package or from Eclipse)

Run on Wildfly Server 10.1.0.Final.

To add some user and notes to the database, uncomment the following annotations

package it.unifi.ing.stlab.swa.bean.startup;

@Singleton
@Startup
public class StartupBean {
  ...
}