An open API service indexing awesome lists of open source software.

https://github.com/hendisantika/spring-boot-security-example

The application showing how to use Spring Boot with Spring Security for common needs
https://github.com/hendisantika/spring-boot-security-example

Last synced: about 2 months ago
JSON representation

The application showing how to use Spring Boot with Spring Security for common needs

Awesome Lists containing this project

README

        

Example Spring Boot Security
============================

The application showing how to use Spring Boot with Spring Security for common needs, such as:

* Customized login form
* DAO-based authentication
* Basic "remember me" authentication
* URL-based security
* Method-level security

See the [Spring Boot Security Application](http://kielczewski.eu/2014/12/spring-boot-security-application/) article for
commentary.

Requirements
------------
* [Java Platform (JDK) 8](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
* [Apache Maven 3.x](http://maven.apache.org/)

Quick start
-----------
1. `mvn clean spring-boot:run`
3. Point your browser to [http://localhost:8080/](http://localhost:8080/)

Screen shot
-----------
Index Page

![Index Page](img/index.png "Index Page")

Login Page

![Login Page](img/login.png "Login Page")

Menu Page

![Menu Page](img/menu.png "Menu Page")

List Users Page

![List Users Page](img/list.png "List Users Page")

Create New User Page

![Create New User Page](img/create.png "Create New User Page")

List Users Page

![List Users Page](img/list2.png "List Users Page")

User Details Page

![User Details Page](img/details.png "User Details Page")