समस्या आपकी संदर्भ फ़ाइल में निम्न जानकारी के साथ है
<bean id="productGlobalTrendRepo"
class="com.mongodb.repository.ProductGlobalTrendRepository">
</bean>
आपको एक वर्ग com.mongodb.repository.ProductGlobalTrendRepositoryImpl बनाना चाहिए जो com.mongodb.repository.ProductGlobalTrendRepository को लागू करता है और इसके तरीकों का कार्यान्वयन प्रदान करता है।
फिर अपनी बीन घोषणा जानकारी को इस रूप में बदलें
<bean id="productGlobalTrendRepo"
class="com.mongodb.repository.ProductGlobalTrendRepositoryImpl">
</bean>
दृश्य के पीछे वस्तु बनाई जाती है जो इंटरफ़ेस के साथ संभव नहीं है।