Skip to content
Advertisement

Spring Boot URL mapping not working when files are present in multiple packages

I tried making a simple REST API using Spring Boot. I have put the classes in separate packages. In this case, the URL mapping is not working (checked using Postman), whereas its working fine if I put them all in the same package as that of the main class.

“”” Hierarchy of the packages :

  • com.example.ProductCRUD |—–ProductCrudApplication.java (main)
  • com.example.ProductCRUD.Controller |—–ProductController.java(controller)
  • com.example.ProductCRUD.Entity |——Product.java(model class)
  • com.example.Repository |—–ProductRepo.java(Repository interface)
  • com.example.Service |——-ProductService.java(Service class) “””

I tried including @componentscan(“com.example”) in the main class. But in that case, it throws an error.

If somebody could help me in finding out where I went wrong, it would be helpful.

Thanks in advance for your help.

JavaScript
JavaScript
JavaScript
JavaScript
JavaScript

— If I include the @Componentscan this is the error I am receiving :

JavaScript

Advertisement

Answer

moving the main class from com/example/ProductCRUD to com/example

fixes your issue.

diff:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement