java-tutorials/spring-security-login-and-r...
eugenp 556b7ca886 maven work 2015-08-15 17:38:25 +03:00
..
src formatting work and session fix 2015-08-01 13:57:52 +03:00
.classpath maven work 2015-08-15 17:38:25 +03:00
.project maven upgrades 2014-11-02 14:18:31 +02:00
.springBeans changing base directory of a project 2014-10-14 11:24:06 +03:00
README.md add readme 2015-03-23 19:35:07 +02:00
pom.xml maven work 2015-08-15 17:38:25 +03:00

README.md

=========

Login and Registration Example Project with Spring Security

Relevant Articles:

Build the Project

mvn clean install

Set up MySQL

mysql -u root -p 
> CREATE USER 'tutorialuser'@'localhost' IDENTIFIED BY 'tutorialmy5ql';
> GRANT ALL PRIVILEGES ON *.* TO 'tutorialuser'@'localhost';
> FLUSH PRIVILEGES;

Set up Email

You need to configure the email by renaming file "email.properties.sample" to "email.properties" and provide your own username and password. You also need to use your own host, you can use Amazon or Google for example.