Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a-cordier/user-registration-module
Registration module example using JSF - CDI - HIBERNATE (primefaces ready)
https://github.com/a-cordier/user-registration-module
Last synced: 14 days ago
JSON representation
Registration module example using JSF - CDI - HIBERNATE (primefaces ready)
- Host: GitHub
- URL: https://github.com/a-cordier/user-registration-module
- Owner: a-cordier
- Created: 2014-09-16T16:04:16.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-20T14:33:46.000Z (about 9 years ago)
- Last Synced: 2024-10-10T20:58:46.482Z (about 1 month ago)
- Language: Java
- Size: 164 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#### A simple user registration module
##### Using
- JSF-2.2
- CDI weld impl.
- Hibernate 4.*
- Primefaces 4.0
- Tomcat 7.*
- Java 1.7
- MySQL DB##### TODO
- email validation
##### Matching mySQL table
````
+-----------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-----------+------------------+------+-----+---------+----------------+
| user_id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| firstname | varchar(100) | NO | | NULL | |
| lastname | varchar(100) | NO | | NULL | |
| avatar | blob | YES | | NULL | |
| username | varchar(50) | NO | UNI | NULL | |
| password | char(64) | NO | | NULL | |
| email | varchar(254) | NO | | NULL | |
+-----------+------------------+------+-----+---------+----------------+
````