I have 2 projects. One is a DAL project that does CRUD operations on a neo4j DB using spring neo4j APIs . This project is packaged as a jar and included in project #2. Proje
Had this same issue for a short while, then @EntityScan
did the trick for me, just as adviced here - Spring Boot w/ JPA: move @Entity to different package.
Hope that helps
The argument to @ComponentScan
is a package name, and those strings aren't valid packages. Drop the .*
from them; Spring scans subpackages automatically.