本文整理汇总了Java中org.hibernate.CacheMode.IGNORE属性的典型用法代码示例。如果您正苦于以下问题:Java CacheMode.IGNORE属性的具体用法?Java CacheMode.IGNORE怎么用?Java CacheMode.IGNORE使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.hibernate.CacheMode
的用法示例。
在下文中一共展示了CacheMode.IGNORE属性的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getCacheMode
private static CacheMode getCacheMode(CacheModeType cacheModeType) {
switch ( cacheModeType ) {
case GET:
return CacheMode.GET;
case IGNORE:
return CacheMode.IGNORE;
case NORMAL:
return CacheMode.NORMAL;
case PUT:
return CacheMode.PUT;
case REFRESH:
return CacheMode.REFRESH;
default:
throw new AssertionFailure( "Unknown cacheModeType: " + cacheModeType );
}
}
示例2: getCacheMode
private static CacheMode getCacheMode(AnnotationInstance[] hints, String element, String query) {
String val = getString( hints, element );
if ( val == null ) {
return null;
}
if ( val.equalsIgnoreCase( CacheMode.GET.toString() ) ) {
return CacheMode.GET;
}
if ( val.equalsIgnoreCase( CacheMode.IGNORE.toString() ) ) {
return CacheMode.IGNORE;
}
if ( val.equalsIgnoreCase( CacheMode.NORMAL.toString() ) ) {
return CacheMode.NORMAL;
}
if ( val.equalsIgnoreCase( CacheMode.PUT.toString() ) ) {
return CacheMode.PUT;
}
if ( val.equalsIgnoreCase( CacheMode.REFRESH.toString() ) ) {
return CacheMode.REFRESH;
}
throw new AnnotationException( "Unknown CacheMode in hint: " + query + ":" + element );
}
示例3: methodWithCacheModeIgnoreAnnotation
@UnitOfWork(
readOnly = false,
cacheMode = CacheMode.IGNORE,
transactional = true,
flushMode = FlushMode.AUTO)
public void methodWithCacheModeIgnoreAnnotation() {
}
开发者ID:mtakaki,项目名称:CredentialStorageService-dw-hibernate,代码行数:7,代码来源:UnitOfWorkApplicationListenerTest.java
示例4: getCacheMode
public static CacheMode getCacheMode(String cacheMode) {
if (cacheMode == null) return null;
if ( "get".equals( cacheMode ) ) return CacheMode.GET;
if ( "ignore".equals( cacheMode ) ) return CacheMode.IGNORE;
if ( "normal".equals( cacheMode ) ) return CacheMode.NORMAL;
if ( "put".equals( cacheMode ) ) return CacheMode.PUT;
if ( "refresh".equals( cacheMode ) ) return CacheMode.REFRESH;
throw new MappingException("Unknown Cache Mode: " + cacheMode);
}
示例5: getCacheMode
@Override
public CacheMode getCacheMode() {
return CacheMode.IGNORE;
}
示例6: execute
@Override
public <E> E execute(OnlineSectioningAction<E> action, OnlineSectioningLog.Entity user) throws SectioningException {
long c0 = OnlineSectioningHelper.getCpuTime();
String cacheMode = getConfig().getProperty(action.name() + ".CacheMode", getConfig().getProperty("CacheMode"));
OnlineSectioningHelper h = new OnlineSectioningHelper(user, cacheMode != null ? CacheMode.valueOf(cacheMode) : action instanceof HasCacheMode ? ((HasCacheMode)action).getCacheMode() : CacheMode.IGNORE);
try {
setCurrentHelper(h);
h.addMessageHandler(new OnlineSectioningHelper.DefaultMessageLogger(LogFactory.getLog(action.getClass().getName() + "." + action.name() + "[" + getAcademicSession().toCompactString() + "]")));
h.addAction(action, getAcademicSession());
E ret = action.execute(this, h);
if (h.getAction() != null && !h.getAction().hasResult()) {
if (ret == null)
h.getAction().setResult(OnlineSectioningLog.Action.ResultType.NULL);
else if (ret instanceof Boolean)
h.getAction().setResult((Boolean)ret ? OnlineSectioningLog.Action.ResultType.TRUE : OnlineSectioningLog.Action.ResultType.FALSE);
else
h.getAction().setResult(OnlineSectioningLog.Action.ResultType.SUCCESS);
}
return ret;
} catch (Exception e) {
if (e instanceof SectioningException) {
if (e.getCause() == null) {
h.info("Execution failed: " + e.getMessage());
} else {
h.warn("Execution failed: " + e.getMessage(), e.getCause());
}
} else {
h.error("Execution failed: " + e.getMessage(), e);
}
if (h.getAction() != null) {
h.getAction().setResult(OnlineSectioningLog.Action.ResultType.FAILURE);
if (e.getCause() != null && e instanceof SectioningException)
h.getAction().addMessage(OnlineSectioningLog.Message.newBuilder()
.setLevel(OnlineSectioningLog.Message.Level.FATAL)
.setText(e.getCause().getClass().getName() + ": " + e.getCause().getMessage()));
else
h.getAction().addMessage(OnlineSectioningLog.Message.newBuilder()
.setLevel(OnlineSectioningLog.Message.Level.FATAL)
.setText(e.getMessage() == null ? "null" : e.getMessage()));
}
if (e instanceof SectioningException)
throw (SectioningException)e;
throw new SectioningException(MSG.exceptionUnknown(e.getMessage()), e);
} finally {
if (h.getAction() != null) {
h.getAction().setEndTime(System.currentTimeMillis()).setCpuTime(OnlineSectioningHelper.getCpuTime() - c0);
if ((!h.getAction().hasStudent() || !h.getAction().getStudent().hasExternalId()) &&
user != null && user.hasExternalId() &&
user.hasType() && user.getType() == OnlineSectioningLog.Entity.EntityType.STUDENT) {
if (h.getAction().hasStudent()) {
h.getAction().getStudentBuilder().setExternalId(user.getExternalId());
} else {
h.getAction().setStudent(OnlineSectioningLog.Entity.newBuilder().setExternalId(user.getExternalId()));
}
}
}
if (iLog.isDebugEnabled())
iLog.debug("Executed: " + h.getLog() + " (" + h.getLog().toByteArray().length + " bytes)");
OnlineSectioningLogger.getInstance().record(h.getLog());
releaseCurrentHelper();
}
}
示例7: getCacheMode
public CacheMode getCacheMode() {
return CacheMode.IGNORE;
}
示例8: methodWithCacheModeIgnoreAnnotation
@UnitOfWork(readOnly = false, cacheMode = CacheMode.IGNORE, transactional = true, flushMode = FlushMode.AUTO)
public void methodWithCacheModeIgnoreAnnotation() {
}