Problem dotyczy następujących informacji w Twoim pliku kontekstowym
<bean id="productGlobalTrendRepo"
class="com.mongodb.repository.ProductGlobalTrendRepository">
</bean>
Należy utworzyć klasę com.mongodb.repository.ProductGlobalTrendRepositoryImpl, która implementuje com.mongodb.repository.ProductGlobalTrendRepository i zapewnia implementację jej metod.
następnie zmień informacje o deklaracji ziarna jako
<bean id="productGlobalTrendRepo"
class="com.mongodb.repository.ProductGlobalTrendRepositoryImpl">
</bean>
Za sceną tworzony jest obiekt, co nie jest możliwe w przypadku interfejsu.