Skip to content

rafal-paton/javajobs

Repository files navigation

JavaJobs

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.


Live Demo

http://ec2-18-195-50-193.eu-central-1.compute.amazonaws.com:8000/swagger-ui/index.html#

Key Features

User Functionalities

  • 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.

Architecture

Architecture of JavaJobs

  • 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.

Technologies Used

  • Backend:
    Java 17   Apache Maven   Spring Boot   Spring Security   Spring Scheduler

  • Database:
    MongoDB   MongoExpress   Redis

  • Testing:
    JUnit5   AssertJ   Mockito   WireMock   TestContainers   Awaitility

  • Deployment:
    AWS   Docker   Docker Compose   NGINX

  • Other:
    Lombok   Log4j2   Swagger   Git   GitHub   JWT


API Endpoints

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

Deployment

The application is deployed on Amazon Web Services (AWS) using:

  • EC2: Hosting the application.
  • ECR: Container storage.

How It Works

  1. User Registration: Users must register to gain access.
  2. JWT Token Generation: A unique token is generated upon successful registration.
  3. Job Offer Retrieval: Users can browse offers fetched from external APIs or manually added.
  4. Scheduler: Automatically updates the list of job offers every 3 hours.
  5. Caching: Improves performance by caching frequent queries using Redis.

Solved Problems

  • 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.

Future Plans

  • 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!


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages