org.hibernate.query.Query.setFlushMode()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(214)

本文整理了Java中org.hibernate.query.Query.setFlushMode方法的一些代码示例,展示了Query.setFlushMode的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.setFlushMode方法的具体详情如下:
包路径:org.hibernate.query.Query
类名称:Query
方法名:setFlushMode

Query.setFlushMode介绍

set the current FlushMode in effect for this query.
[中](重新)为此查询设置有效的当前刷新模式。

代码示例

代码示例来源:origin: hibernate/hibernate-orm

  1. protected void setQueryProperties(Query query) {
  2. if ( maxResults != null ) {
  3. query.setMaxResults( maxResults );
  4. }
  5. if ( firstResult != null ) {
  6. query.setFirstResult( firstResult );
  7. }
  8. if ( cacheable != null ) {
  9. query.setCacheable( cacheable );
  10. }
  11. if ( cacheRegion != null ) {
  12. query.setCacheRegion( cacheRegion );
  13. }
  14. if ( comment != null ) {
  15. query.setComment( comment );
  16. }
  17. if ( flushMode != null ) {
  18. query.setFlushMode( flushMode );
  19. }
  20. if ( cacheMode != null ) {
  21. query.setCacheMode( cacheMode );
  22. }
  23. if ( timeout != null ) {
  24. query.setTimeout( timeout );
  25. }
  26. if ( lockOptions != null && lockOptions.getLockMode() != LockMode.NONE ) {
  27. query.setLockMode( REFERENCED_ENTITY_ALIAS, lockOptions.getLockMode() );
  28. }
  29. }

代码示例来源:origin: org.nuiton.topia/topia-persistence

  1. protected Query prepareQuery(String jpaql, Map<String, Object> parameters) {
  2. checkHqlParameters(parameters);
  3. Query query = hibernateSupport.getHibernateSession().createQuery(jpaql);
  4. for (Map.Entry<String, Object> entry : parameters.entrySet()) {
  5. String name = entry.getKey();
  6. Object value = entry.getValue();
  7. if (value.getClass().isArray()) {
  8. query.setParameterList(name, (Object[]) value);
  9. } else if (value instanceof Collection<?>) {
  10. query.setParameterList(name, (Collection<?>) value);
  11. } else {
  12. query.setParameter(name, value);
  13. }
  14. }
  15. // tchemit 2010-11-30 reproduce the same behaviour than before with the dao legacy
  16. if (useFlushMode) { // FIXME AThimel 06/08/14 I think this is the reason of the unexpected flush we have
  17. query.setFlushMode(FlushMode.AUTO);
  18. }
  19. return query;
  20. }

代码示例来源:origin: org.hibernate.orm/hibernate-core

  1. query.setFlushMode( flushModeType );

相关文章