lazaronixon / jsf-perfect-crud

A modern and sofisticated start template for JSF/JAVAEE

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JSF PERFECT CRUD

After some time working with Ruby on Rails (more than 5 years), I catch myself rediscovering the JSF/JAVAEE but this time with another mind, so I tried here bring some opnative rules from ROR to JSF.

The simplicity without a opinionated environment brought to JSF a bad reputation, on my point of view not for the technology but because the bad developers and practices, many of than coming from desktop development and RAD enviroments.

Even now on this times of javascript on everything, json everywhere, quees and distributed systems I believe that JSF/JAVAEE has you place as enterprise application.

This project is a implementation of generated crud of Ruby on Rails using JSF 2.3 and JavaEE 8.

preview

controller

URL

Primefaces Version

Requirements

  • OpenJDK 11
  • Netbeans 11.3
  • Payara Server 5.194
  • Java DB (embedded)

Database

CREATE TABLE STUDENT (
   ID INT GENERATED ALWAYS AS IDENTITY,
   NAME VARCHAR(255),
   ADDRESS VARCHAR(255),
   CREATEDAT TIMESTAMP NOT NULL,
   UPDATEDAT TIMESTAMP NOT NULL,
   PRIMARY KEY (Id)
);

References and Guides

About

A modern and sofisticated start template for JSF/JAVAEE


Languages

Language:Java 53.2%Language:HTML 42.6%Language:CSS 4.2%Language:JavaScript 0.0%