0
我感到困惑,從javax.persistence.EntityManager;
的persist()
方法之間的差異(如果有的話),並從 com.google.appengine.api.datastore
。我的put()
方法知道這兩種方法都之間的區別用於存儲實體在數據存儲例如:是什麼在谷歌應用程序引擎的堅持()和put()方法
EntityManager em = EMFService.get().createEntityManager();
em.persist(entity);
和
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();
datastore.put(entity);
什麼是兩者之間的區別,以及哪種方法是最好的存儲實體?我已經尋找答案,但我發現都是模糊的。
Thanks.As編輯顯示,我要問哪個是最適合存儲實體的。 –