JavaJobs is a Spring Boot-based web application designed to help Junior Java Developers find job opportunities tailored to their skill levels. The application aggregates job listings periodically and lets users to browse, add, and manage these offers efficiently.
http://ec2-18-195-50-193.eu-central-1.compute.amazonaws.com:8000/swagger-ui/index.html#
- User Registration: Users can register to create accounts.
- Token-based Authorization: Secure access to features via JWT tokens.
- View Job Offers: Browse a list of job offers.
- Add Custom Offers: Users can manually add job listings.
- Scheduled Updates: Periodically fetches the latest job offers every 3 hours.
- Caching: Reduces database queries by using a Redis cache for repeated requests within 60 minutes.
- Request Validation: Ensures robust data handling.
- Hexagonal Architecture: Clean separation of concerns for easy extensibility and maintenance.
- Modular Monolith: Ensures scalability while maintaining simplicity.
- Facade Design Pattern: Simplifies interaction between modules.
- NoSQL Database: MongoDB for efficient storage of job listings and user data.
Application provides the following endpoints:
Endpoint | Method | Request | Response | Function |
---|---|---|---|---|
/register |
POST | JSON BODY (username and password) | JSON (username and created flag) | register a user |
/token |
POST | JSON BODY (username and password) | JSON (token) | give user a token |
/offers |
GET | PATH VARIABLE (token) | JSON (offers) | sending offers |
/offers/{id} |
GET | PATH VARIABLE (token) | JSON (offer) | finding offer by id |
/offers |
POST | PATH VARIABLE (token) | JSON (offer) | creates new offer |
The application is deployed on Amazon Web Services (AWS) using:
- EC2: Hosting the application.
- ECR: Container storage.
- User Registration: Users must register to gain access.
- JWT Token Generation: A unique token is generated upon successful registration.
- Job Offer Retrieval: Users can browse offers fetched from external APIs or manually added.
- Scheduler: Automatically updates the list of job offers every 3 hours.
- Caching: Improves performance by caching frequent queries using Redis.
- Implemented secure token-based authentication using Spring Security and JWT.
- Structured code with hexagonal architecture for better maintainability.
- Achieved efficient data fetching and caching using schedulers and Redis.
- Deployed a scalable solution on AWS infrastructure.
- Extend the application to include job listings for other IT roles.
- Add a user dashboard with job bookmarking and notifications.
- Implement a full-text search for job offers.
This project demonstrates my ability to design, implement, and deploy a robust web application using modern tools and best practices. Feel free to explore the codebase and contact me with any questions or feedback!