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
The solution that worked for me was to add all the relevant classes to the @ContextConfiguration
annotation for the testing class.
The class to test, MyClass.java
, had two autowired components: AutowireA
and AutowireB
. Here is my fix.
@ContextConfiguration(classes = {MyClass.class, AutowireA.class, AutowireB.class})
public class MyClassTest {
...
}