Bheemm1992 / E-Commerce-

E-Commerce Web Application This is a backend API for an e-commerce platform built using Java Spring Boot. It supports essential product management features, including product listing, detail retrieval, and CRUD operations for sellers. The application is designed with scalability and efficiency in mind, utilizing PostgreSQL for data persistance
MIT License
2 stars 5 forks source link

Map and Implement Product Search Service #1

Open Bheemm1992 opened 1 week ago

Bheemm1992 commented 1 week ago

Issue: Map and Implement Product Search Service Feature Overview: This task aims to add a search feature for products by keyword. The functionality will allow users to search for products using a GET endpoint. The search will query the product repository to return matching results.

Implementation Details: Map Search Endpoint in ProductController:

Add a new @GetMapping to the ProductController The endpoint should accept a keyword as a query parameter and return a list of products that match the keyword.

ayush1233 commented 1 week ago

I want to contribute to this issue