Hi,
i have this class
Code:@Document(collection="fiche") public class Projet { //Id Projet Evalué String idProjet; //Projet Evalué String projetEvalue; //Service Gerant le Projet String serviceProjet; //Date D'évaluation du projet String dateEvaluation; @DBRef private Client client; @DBRef private Contexte contexte; @DBRef private Collaborateur collaborateur; @DBRef private Evaluateur evaluateur; //Getters and Setters
When inserts documents i a collection
what is sotred in fiche ?? the wholes refenced classes or just classes idsCode:mongotemplate.insert(fiche);
Thanks


Reply With Quote