This project is a Spring Boot application that provides security features using JWT authentication. It includes custom filters for JWT authentication and response logging.
- JWT Authentication
- Stateless session management
- Custom filters for request and response logging
- Secure endpoints with role-based access control
POST /auth/login
- Authenticate user and generate JWT tokenPOST /auth/register
- Register a new userGET /posts
- Public endpoint accessible without authenticationGET /error
- Public endpoint for error handlingGET /secure
- Secure endpoint accessible only with valid JWT token
- Spring Boot Starter Web
- Spring Boot Starter Security
- Spring Boot Starter Data JPA
- Lombok
- Jakarta Servlet API
- Spring Web
- Clone the repository:
git clone https://github.com/rudradcruze/securityapp.git
- Navigate to the project directory:
cd securityapp
- Build the project using Maven:
mvn clean install
- Run the application:
mvn spring-boot:run
- Configure the database connection in
application.properties
. - Set up JWT secret and expiration time in
application.properties
.
- Register a new user by sending a POST request to
/auth/register
with user details. - Authenticate the user by sending a POST request to
/auth/login
with credentials to receive a JWT token. - Use the JWT token to access secure endpoints by including it in the
Authorization
header asBearer <token>
.
- Validates the JWT token and sets the authentication in the security context.
- Logs the details of each request and response for debugging and monitoring purposes.
- Custom exception handling is implemented to resolve exceptions and provide meaningful error responses.
Tech-savvy learner/programmer pushing boundaries of online tech. Passionate about new tools, seeking challenges to advance skills.