I\'ve started my project by creating entities, services and JUnit tests for services using Spring and Hibernate. All of this works great.
Then I\'ve added spring-mvc to make
I ran in to this recently, and as it turned out, I've imported the wrong annotation in my service class. Netbeans has an option to hide import statements, that's why I did not see it for some time.
I've used @org.jvnet.hk2.annotations.Service instead of @org.springframework.stereotype.Service.