Spring Boot application implementing Form-Based Authentication using Spring Security. After successful login, users are automatically redirected to the Store Home Page.

- Java 17
- Spring Boot
- Spring Security
- Thymeleaf
- Maven
- Custom login page
- Form-based authentication
- In-memory user configuration
- Role-based access
- Redirect to store page after login
- Logout support
ds
│
├── src/main/java/com/example/store
│ ├── config
│ │ └── SecurityConfig.java
│ │
│ ├── controller
│ │ └── StoreController.java
│
│ └── StoreApplication.java
│
├── src/main/resources
│ ├── templates
│ │ ├── login.html
│ │ └── store.html
│ │
│ └── application.properties
│
├── pom.xml
└── README.md
Vatsal Varma
Spring Boot | Spring Security