MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

MongoDB - Considera la definizione di un bean di tipo 'org.springframework.data.mongodb.repository.query.MongoEntityInformation' nella tua configurazione

Prima di tutto vorrei dire che per favore NON UTILIZZARE LA CLASSE DI IMPLEMENTAZIONE INVECE UTILIZZARE UN'INTERFACCIA .

dichiarare un'interfaccia ed estenderla da MongoRepository<T,ID> , la primavera fornirà l'implementazione out-of-the-box.

@Repository
public interface StudentMongoRepository extends MongoRepository<T,ID>{

@Autowired
private MongoOperations mongoOperations;

Questo dovrebbe funzionare.