[问题] I've been fighting with trying to get Mongoose to return data from my local MongoDB instance; I can run the same command in the MongoDB shell and I get results back. I have found a post on stackoverflow that talks about the exact problem I'm h…
项目中用到了spring-data-jpa,今天在写一个update方法的时候报了个空指针,看了看是因为一个对象中的关联没有取出来,我用的是getOne取得这个对象,加断点看以一下这个对象是个hibernate的代理对象,而不是实体,里面基本没有值. 然后我又换成findOne试了一下,断点查看这个取出来的对象,这个对象是实体,关联也有. findOne与getOne的注释中也有些帮助 /** * Retrieves an entity by its id. * * @param id must…