本文整理了Java中org.hibernate.stat.Statistics.getCollectionLoadCount()
方法的一些代码示例,展示了Statistics.getCollectionLoadCount()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Statistics.getCollectionLoadCount()
方法的具体详情如下:
包路径:org.hibernate.stat.Statistics
类名称:Statistics
方法名:getCollectionLoadCount
[英]Global number of collections loaded
[中]加载的集合的全局数量
代码示例来源:origin: hibernate/hibernate-orm
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics( getEntityManagerFactory( args ) );
return Long.valueOf( statistics != null ? statistics.getCollectionLoadCount() : 0 );
}
};
代码示例来源:origin: wildfly/wildfly
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics(getEntityManagerFactory(args));
return Long.valueOf(statistics != null ? statistics.getCollectionLoadCount() : 0);
}
};
代码示例来源:origin: wildfly/wildfly
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics(getEntityManagerFactory(args));
return Long.valueOf(statistics != null ? statistics.getCollectionLoadCount() : 0);
}
};
代码示例来源:origin: wildfly/wildfly
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics(getEntityManagerFactory(args));
return Long.valueOf(statistics != null ? statistics.getCollectionLoadCount() : 0);
}
};
代码示例来源:origin: wildfly/wildfly
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics(getEntityManagerFactory(args));
return Long.valueOf(statistics != null ? statistics.getCollectionLoadCount() : 0);
}
};
代码示例来源:origin: gocd/gocd
json.put("SessionCloseCount", statistics.getSessionCloseCount());
json.put("SessionOpenCount", statistics.getSessionOpenCount());
json.put("CollectionLoadCount", statistics.getCollectionLoadCount());
json.put("CollectionFetchCount", statistics.getCollectionFetchCount());
json.put("CollectionUpdateCount", statistics.getCollectionUpdateCount());
代码示例来源:origin: prometheus/client_java
@Override
public double getValue(Statistics statistics) {
return statistics.getCollectionLoadCount();
}
}
代码示例来源:origin: jboss.jboss-embeddable-ejb3/hibernate-all
/**
* @see StatisticsServiceMBean#getCollectionLoadCount()
*/
public long getCollectionLoadCount() {
return stats.getCollectionLoadCount();
}
/**
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate
/**
* @see StatisticsServiceMBean#getCollectionLoadCount()
*/
public long getCollectionLoadCount() {
return stats.getCollectionLoadCount();
}
/**
代码示例来源:origin: hibernate/hibernate
/**
* @see StatisticsServiceMBean#getCollectionLoadCount()
*/
public long getCollectionLoadCount() {
return stats.getCollectionLoadCount();
}
/**
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core
/**
* @see StatisticsServiceMBean#getCollectionLoadCount()
*/
public long getCollectionLoadCount() {
return stats.getCollectionLoadCount();
}
/**
代码示例来源:origin: org.jboss.as/jboss-as-jpa-hibernate4
@Override
void handle(final ModelNode response, final String name, ManagementLookup stats, OperationContext context) {
response.set(stats.getStatistics().getCollectionLoadCount());
}
});
代码示例来源:origin: org.jboss.eap/jipijapa-hibernate4-3
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics(getEntityManagerFactory(args));
return Long.valueOf(statistics != null ? statistics.getCollectionLoadCount() : 0);
}
};
代码示例来源:origin: org.jboss.eap/jipijapa-hibernate5-3
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics(getEntityManagerFactory(args));
return Long.valueOf(statistics != null ? statistics.getCollectionLoadCount() : 0);
}
};
代码示例来源:origin: org.jboss.eap/jipijapa-hibernate5
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics(getEntityManagerFactory(args));
return Long.valueOf(statistics != null ? statistics.getCollectionLoadCount() : 0);
}
};
代码示例来源:origin: org.jipijapa/jipijapa-hibernate4-3
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics(getEntityManagerFactory(args));
return Long.valueOf(statistics != null ? statistics.getCollectionLoadCount() : 0);
}
};
代码示例来源:origin: org.jipijapa/jipijapa-hibernate4-1
@Override
public Object invoke(Object... args) {
org.hibernate.stat.Statistics statistics = getStatistics(getEntityManagerFactory(args));
return Long.valueOf(statistics != null ? statistics.getCollectionLoadCount() : 0);
}
};
代码示例来源:origin: org.jbpm/pvm
public void endCacheTest() {
SessionFactory sessionFactory = environment.get(SessionFactory.class);
if (sessionFactory != null) {
assertEquals(0, sessionFactory.getStatistics().getEntityLoadCount());
assertEquals(0, sessionFactory.getStatistics().getCollectionLoadCount());
}
}
代码示例来源:origin: org.ow2.bonita/bonita-pvm
public void endCacheTest() {
SessionFactory sessionFactory = environment.get(SessionFactory.class);
if (sessionFactory != null) {
assertEquals(0, sessionFactory.getStatistics().getEntityLoadCount());
assertEquals(0, sessionFactory.getStatistics().getCollectionLoadCount());
}
}
代码示例来源:origin: com.springsource.insight/insight-repo
private void addCollectionStats(List<ApplicationStat> res, Statistics stats) {
addStat(res, "collection/total/fetches", stats.getCollectionFetchCount());
addStat(res, "collection/total/loads", stats.getCollectionLoadCount());
addStat(res, "collection/total/recreates", stats.getCollectionRecreateCount());
addStat(res, "collection/total/removes", stats.getCollectionRemoveCount());
addStat(res, "collection/total/updates", stats.getCollectionUpdateCount());
for (String collectionRole : stats.getCollectionRoleNames()) {
CollectionStatistics collStats = stats.getCollectionStatistics(collectionRole);
addStat(res, "collection/" + collectionRole + "/fetches", collStats.getFetchCount());
addStat(res, "collection/" + collectionRole + "/loads", collStats.getLoadCount());
addStat(res, "collection/" + collectionRole + "/recreates", collStats.getRecreateCount());
addStat(res, "collection/" + collectionRole + "/removes", collStats.getRemoveCount());
addStat(res, "collection/" + collectionRole + "/update", collStats.getUpdateCount());
}
}
内容来源于网络,如有侵权,请联系作者删除!