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

Some missing files #3

Closed nipun-das closed 5 days ago

nipun-das commented 5 days ago

Hey, I forked your project and can't seem to run it due to the following issues:

The project doesn't follow the correct folder structure for a maven project. There is no pom.xml or application.properties file.

Ensure you have it like this:

SpringEcom/ # Main project directory ├── src/ # Source folder │ ├── main/ │ │ ├── java/ # Java source code directory │ │ │ └── com/yourcompany/ecommerce/ # Package name directory │ │ │ ├── controller/ # Controller package │ │ │ │ └── ProductController.java # Handles product-related requests │ │ │ ├── model/ # Model package │ │ │ │ └── Product.java # Product entity class │ │ │ ├── repo/ # Repository package │ │ │ │ └── ProductRepo.java # Repository interface for product data │ │ │ └── service/ # Service package │ │ │ └── ProductService.java # Service class for product operations │ │ └── resources/ # Resources like application.properties │ │ └── application.properties # Configuration file │ └── test/ # Unit and integration tests │ └── java/ # Test source code │ └── com/yourcompany/ecommerce/ │ └── ProductServiceTest.java # Test class for service layer ├── pom.xml # Maven project configuration file ├── README.md # Project documentation

Bheemm1992 commented 5 days ago

thanks for your concern, as we can see there is no pom.xml file We will add it sooner