java-spring-kafka-unit-3-project

Project 3

Title Type Duration Creator
Unit 3 project Unit Project 5 days Suresh Sigera

Here’s your chance to put all that you have learned about Java, OOP, Concurrency, Spring, and Kafka into practice.

Your REST API must comply with the following requirements:

General Requirements

Regardless of the option you choose, follow these steps:

Example Javadoc

/**
 * This method is used to add two integers.
 * @param numA This is the first parameter to addNum method
 * @param numB This is the second parameter to addNum method
 * @return int This returns the sum of numA and numB.
 */
public int addNum(int numA, int numB) {
    return numA + numB;   
}

REST API Documentation Example

Request Type URL Functionality Access
POST /auth/users/login/ User login Public
GET /api/categories/ Get all categories Private

Necessary Deliverables

Submission

Asking for Help

Useful Resources - Java API - ERD Tool - Spring Framework Documentation

Presentations

Plagiarism

By completing this project, you’ll gain practical experience with the material covered in class, preparing you for real-world coding challenges and technical interviews.