java-tutorials/spring-security-login-and-r...
eugenp 7221465284 cleanup work 2016-02-14 11:15:29 +02:00
..
.externalToolBuilders cleanup work 2016-02-06 12:50:32 +02:00
src general formatting work 2016-01-30 12:01:41 +02:00
.classpath cleanup and upgrade 2016-01-09 13:01:37 +02:00
.project cleanup work 2016-02-06 12:50:32 +02:00
.springBeans changing base directory of a project 2014-10-14 11:24:06 +03:00
README.md Update README.md 2016-02-10 13:45:30 +02:00
pom.xml cleanup work 2016-02-14 11:15:29 +02: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.