Skip to content

Latest commit

 

History

History
40 lines (35 loc) · 1.74 KB

README.md

File metadata and controls

40 lines (35 loc) · 1.74 KB

SpringRegistrationExample

Registration and Login Example with Spring Security, Spring Boot, Spring Data JPA, Hibernate, JSP, Tomcat
Codacy Badge Build Status License Coverage Status

Prerequisites

  • JDK 1.7 or later
  • Maven 3 or later

Stack

  • Spring Security
  • Spring Boot
  • Spring Data JPA
  • Maven
  • JSP
  • HIBERNATE
  • TOMCAT

db

via terminal:

mysql -u root -p
CREATE DATABASE db_demo;
CREATE USER 'h3x'@'localhost' IDENTIFIED BY 'pass';
GRANT ALL PRIVILEGES ON *.* TO 'h3x'@'localhost';
FLUSH PRIVILEGES;
USE db_demo;
INSERT INTO `role` VALUES (1,'ADMIN');
INSERT INTO `role` VALUES (2,'USER');

forthebadge