延迟加载是计算机编程中常用的设计模式,用于将对象的初始化推迟到需要它的点。
如何在 TabView (PrimeNG) 中延迟加载 Angular 2 组件?
这是我的app.component.ts: 从 '@angular/core' 导入 { Component } ; @成分({ templateUrl: 'app/app.component.html', 选择器:“我的应用程序” }) 导出类 AppComponent { } 这是...
我有: @实体 公共类 MyEntity { @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, orphanRemoval = true) @JoinColumn(名称 = "myentiy_id") 私人名单 我有: @Entity public class MyEntity { @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, orphanRemoval = true) @JoinColumn(name = "myentiy_id") private List<Address> addreses; @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, orphanRemoval = true) @JoinColumn(name = "myentiy_id") private List<Person> persons; //.... } public void handle() { Session session = createNewSession(); MyEntity entity = (MyEntity) session.get(MyEntity.class, entityId); proceed(session); // FLUSH, COMMIT, CLOSE session! Utils.objectToJson(entity); //TROUBLES, because it can't convert to json lazy collections } 什么问题: 问题是会话关闭后我无法拉动惰性集合。但我也无法不使用 proceed 方法关闭会话。 多么好的解决方案(粗略的解决方案): a) 在会话关闭之前,强制休眠拉取惰性集合 entity.getAddresses().size(); entity.getPersons().size(); .... b)也许更优雅的方法是使用 @Fetch(FetchMode.SUBSELECT) 注释 问题: 最佳实践/常见方法/更优雅的方法是什么?意味着将我的对象转换为 JSON。 在 Hibernate.initialize() 中使用 @Transactional 来初始化惰性对象。 start Transaction Hibernate.initialize(entity.getAddresses()); Hibernate.initialize(entity.getPersons()); end Transaction 现在在事务之外,您可以获取惰性对象。 entity.getAddresses().size(); entity.getPersons().size(); 您可以在同一事务中遍历 Hibernate 对象的 Getters,以确保使用以下 generic 帮助器类急切地获取所有惰性子对象: HibernateUtil.initializeObject(myObject, "my.app.model"); package my.app.util; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.HashSet; import java.util.Set; import org.aspectj.org.eclipse.jdt.core.dom.Modifier; import org.hibernate.Hibernate; public class HibernateUtil { public static byte[] hibernateCollectionPackage = "org.hibernate.collection".getBytes(); public static void initializeObject( Object o, String insidePackageName ) { Set<Object> seenObjects = new HashSet<Object>(); initializeObject( o, seenObjects, insidePackageName.getBytes() ); seenObjects = null; } private static void initializeObject( Object o, Set<Object> seenObjects, byte[] insidePackageName ) { seenObjects.add( o ); Method[] methods = o.getClass().getMethods(); for ( Method method : methods ) { String methodName = method.getName(); // check Getters exclusively if ( methodName.length() < 3 || !"get".equals( methodName.substring( 0, 3 ) ) ) continue; // Getters without parameters if ( method.getParameterTypes().length > 0 ) continue; int modifiers = method.getModifiers(); // Getters that are public if ( !Modifier.isPublic( modifiers ) ) continue; // but not static if ( Modifier.isStatic( modifiers ) ) continue; try { // Check result of the Getter Object r = method.invoke( o ); if ( r == null ) continue; // prevent cycles if ( seenObjects.contains( r ) ) continue; // ignore simple types, arrays und anonymous classes if ( !isIgnoredType( r.getClass() ) && !r.getClass().isPrimitive() && !r.getClass().isArray() && !r.getClass().isAnonymousClass() ) { // ignore classes out of the given package and out of the hibernate collection // package if ( !isClassInPackage( r.getClass(), insidePackageName ) && !isClassInPackage( r.getClass(), hibernateCollectionPackage ) ) { continue; } // initialize child object Hibernate.initialize( r ); // traverse over the child object initializeObject( r, seenObjects, insidePackageName ); } } catch ( InvocationTargetException e ) { e.printStackTrace(); return; } catch ( IllegalArgumentException e ) { e.printStackTrace(); return; } catch ( IllegalAccessException e ) { e.printStackTrace(); return; } } } private static final Set<Class<?>> IGNORED_TYPES = getIgnoredTypes(); private static boolean isIgnoredType( Class<?> clazz ) { return IGNORED_TYPES.contains( clazz ); } private static Set<Class<?>> getIgnoredTypes() { Set<Class<?>> ret = new HashSet<Class<?>>(); ret.add( Boolean.class ); ret.add( Character.class ); ret.add( Byte.class ); ret.add( Short.class ); ret.add( Integer.class ); ret.add( Long.class ); ret.add( Float.class ); ret.add( Double.class ); ret.add( Void.class ); ret.add( String.class ); ret.add( Class.class ); ret.add( Package.class ); return ret; } private static Boolean isClassInPackage( Class<?> clazz, byte[] insidePackageName ) { Package p = clazz.getPackage(); if ( p == null ) return null; byte[] packageName = p.getName().getBytes(); int lenP = packageName.length; int lenI = insidePackageName.length; if ( lenP < lenI ) return false; for ( int i = 0; i < lenI; i++ ) { if ( packageName[i] != insidePackageName[i] ) return false; } return true; } } 不是最好的解决方案,但这是我得到的: 1) 使用此注解注释要初始化的 getter: @Retention(RetentionPolicy.RUNTIME) public @interface Lazy { } 2)从数据库读取对象后,在对象上使用此方法(可以放在泛型类中,也可以用 Object 类更改 T): public <T> void forceLoadLazyCollections(T entity) { Session session = getSession().openSession(); Transaction tx = null; try { tx = session.beginTransaction(); session.refresh(entity); if (entity == null) { throw new RuntimeException("Entity is null!"); } for (Method m : entityClass.getMethods()) { Lazy annotation = m.getAnnotation(Lazy.class); if (annotation != null) { m.setAccessible(true); logger.debug(" method.invoke(obj, arg1, arg2,...); {} field", m.getName()); try { Hibernate.initialize(m.invoke(entity)); } catch (Exception e) { logger.warn("initialization exception", e); } } } } finally { session.close(); } } 放置 Utils.objectToJson(entity);会议结束前致电。 或者你可以尝试设置获取模式并使用这样的代码 Session s = ... DetachedCriteria dc = DetachedCriteria.forClass(MyEntity.class).add(Expression.idEq(id)); dc.setFetchMode("innerTable", FetchMode.EAGER); Criteria c = dc.getExecutableCriteria(s); MyEntity a = (MyEntity)c.uniqueResult(); 当必须获取多个集合时,您需要: 加入获取一个集合 使用 Hibernate.initialize 收集剩余的集合。 因此,就您的情况而言,您需要像这样的第一个 JPQL 查询: MyEntity entity = session.createQuery("select e from MyEntity e join fetch e.addreses where e.id = :id", MyEntity.class) .setParameter("id", entityId) .getSingleResult(); Hibernate.initialize(entity.persons); 这样,您可以通过 2 个 SQL 查询来实现您的目标,并避免笛卡尔积。 Hibernate 4.1.6 引入了一个新功能来处理这些惰性关联问题。当您在 hibernate.properties 或 hibernate.cfg.xml 中启用 hibernate.enable_lazy_load_no_trans 属性时,您将不再有 LazyInitializationException 。 更多信息请参阅:https://stackoverflow.com/a/11913404/286588 这可能不是最佳实践,但我通常在集合上调用 SIZE 以在同一事务中加载子级,就像您所建议的那样。它很干净,不受子元素结构中任何变化的影响,并且生成的 SQL 开销较低。 如果您使用 jpa 存储库, 设置properties.put("hibernate.enable_lazy_load_no_trans",true);到 jpaPropertymap JPA-Hibernate 中对惰性集合存在一些误解。首先我们要明确的是 为什么尝试读取惰性集合会引发异常,而不仅仅是简单地返回 NULL 进行转换或进一步使用?. 这是因为数据库中的空字段(尤其是连接列中的空字段)有意义,而不仅仅是像编程语言那样的未呈现状态。 当您尝试将惰性集合解释为 Null 值时,这意味着(在数据存储端)这些实体之间没有关系,这不是真的。所以抛出异常是某种最佳实践,你必须处理它而不是 Hibernate。 所以如上所述,我建议: 在修改或使用无状态会话查询之前先分离所需的对象 将惰性字段操纵为所需值(零、空等) 也如其他答案中所述,有很多方法(热切获取、加入等)或库和方法可以做到这一点,但在处理问题和解决问题之前,您必须建立对正在发生的情况的看法。 您可以使用实体的 @NamedEntityGraph 注释来创建可加载查询,以设置要在查询中加载的集合。 这种方法的主要优点是,只有当您选择使用此图时,hibernate 才会进行一次查询来检索实体及其集合,如下所示: 实体配置 @Entity @NamedEntityGraph(name = "graph.myEntity.addressesAndPersons", attributeNodes = { @NamedAttributeNode(value = "addresses"), @NamedAttributeNode(value = "persons") }) 用法 public MyEntity findNamedGraph(Object id, String namedGraph) { EntityGraph<MyEntity> graph = em.getEntityGraph(namedGraph); Map<String, Object> properties = new HashMap<>(); properties.put("javax.persistence.loadgraph", graph); return em.find(MyEntity.class, id, properties); } 使用或多或少的标准 JPA 来做到这一点的一种方法是添加 @NamedEntityGraph(includeAllAttributes = true) 您的实体将提供一个与您的实体名称相同的命名实体图(因为未提供名称)。 然后假设您已经从现有方法中获得了entity,那么可以将以下代码应用于它 // this is needed to ensure the existing // object that you have retrieved is disconnected // from the entity manager, otherwise the find // method will return the same object. entityManager.detach(entity); // Locate the entity graph based on the class name of the entity. EntityGraph<?> entityGraph = entityManager.getEntityGraph( entityManager .getMetamodel() .entity(entity.getClass()).getName()); var fullyLoadedEntity = entityManager .find( entity.getClass(), entity.getId(), Map.of( // SpecHints is hibernate specific the value is // "jakarta.persistence.loadgraph" SpecHints.HINT_SPEC_LOAD_GRAPH, entityGraph)); 尝试使用Gson库将对象转换为Json servlet 示例: List<Party> parties = bean.getPartiesByIncidentId(incidentId); String json = ""; try { json = new Gson().toJson(parties); } catch (Exception ex) { ex.printStackTrace(); } response.setContentType("application/json"); response.setCharacterEncoding("UTF-8"); response.getWriter().write(json);
我构建了简单的 vue js 插件(vee-validate 上的包装器),并希望在组件水合和加载时包含它,但是面临 vue 的问题,不允许在应用程序之后注册组件
我遇到了 Ruby 的情况,可能需要创建一个对象,但不确定。由于创建对象的成本可能很高,所以我不太急于创建它。我觉得这个...
如何在Flutter ListView中实现像whatsapp聊天屏幕那样的Lazyload
我试图了解如果我们滚动到顶部,WhatsApp 聊天屏幕如何获取旧聊天记录。 同样,我想在到达对话顶部时进行延迟加载。就我而言,假设 10,000
仅在开发模式下延迟加载React-hook-form devtools
嘿我希望延迟加载 Devtools 组件并仅在环境为“development”时加载它 我试过这个: 在组件本身我有这个 process.env?.NODE_ENV === '开发' &...
错误:“insight-dashboard-erneuerung-settings”在实现延迟加载时不是已知元素
我正在尝试在 Angular 项目中为仪表板模块设置延迟加载,但遇到错误: “insight-dashboard”不是已知元素: 如果“insight-dashboard”是一个 Angular com...
我正在尝试实现延迟加载,但出现如下错误 ** 错误错误:未捕获(承诺):错误:BrowserModule 已经 已加载。如果您需要访问常用指令...
我想将多个图像加载到 JPanel 中,并且我更喜欢按需加载它们而不是一次性加载它们,特别是因为我使用的是 JScrollPane。我加载的大多数图像都来自直接 URL,wh...
我试图找到每当Python第一次运行时加载哪个Python脚本。例如,如果运行 python -v,您会看到如下输出: # 安装 zipimport 钩子 导入 zipimport # 内置 # 安装...
我正在尝试延迟加载无头 ui 对话框组件,但我无法在保持过渡的同时做到这一点。 这是我去过的地方: // 模态.js const 模态 = ({ 开了 }) =>...
typeorm:如何使用 {nullable: false} 正确保存惰性相关实体?
堆栈: 类型:0.3.15 节点 快递:^4.18.2 打字稿 MySQL 我的应用程序中有一个用户实体,该实体具有对其父组织的引用属性。我已经映射了组织属性...
我使用react-spa-prerender生成静态html文件。加载静态页面时,内容最初会呈现片刻,然后清除为白屏,然后再次呈现。 你可以通过
我有一个博客文章列表,数量达到 25+,但它们都在一个页面中,所以我需要尝试构建一个延迟加载器。 我尝试了各种插件,但都没有用 http://jsfiddle...
仅使用 HTML 的 Wordpress 延迟加载 - 加载比应有的更多图像
使用我的代码编辑器进行延迟加载从来没有问题,它通常只在我滚动时加载下一张图像。这次我需要在不使用插件的情况下在 WordPress 中完成。所以我刚刚添加了loa ...
我正在尝试使用带有低分辨率替换的延迟加载高分辨率图像,使用此插件:https://www.appelsiini.net/projects/lazyload/。根据作者的说法,高分辨率图像是定义...
Flutter:有没有办法用 riverpod 进行预加载?
我有一个包含两个屏幕的应用程序:Home 和 List_of_items。主页首先显示,并有一个路由到 List_of_items 的按钮。 List_of_items 使用 riverpod 加载,是的,一个 i... 的列表
我想知道如何改进以下代码以使其更高效并获得有关添加/丢弃内容的提示。在当前的实现中,我将所有产品存储在 _data 列表中
我正在尝试在 React 应用程序中添加实现延迟加载,这在顶级路由中运行良好。但我也想要 并为嵌套路由提供后备。根据...
我的应用程序使用由服务管理的延迟加载选项卡系统。 当用户在导航菜单上选择一个选项时,会发生两件事: 在选项卡服务中,一个条目被添加到选项卡数组中....