必威体育Betway必威体育官网
当前位置:首页 > IT技术

Spring boot使用Jpa的@Modifying的clearAutomatically = true的作用

时间:2019-08-26 08:12:09来源:IT技术作者:seo实验室小编阅读:85次「手机版」
 

modifying

1、代码示例 

@modifying(clearAutomatically = true)
@Query(value = "update customer_adviser set  " +
        " auditStatus = ?1, "+
        " optUserCode = ?3,"+
        " optUserName = ?4 "+
        " where id = ?2", nativeQuery = true)
int updateCustomerAdviserStatUSByID(int auditResult,Long id, String optUserCode, String optUserName);

2、详解

点击@Modifying,进入这个注解(源码,已经贴在文章后面),我们能看到,它是指可以清除底层持久化上下文,即entityManager这个类;Jpa底层实现会有一级缓存,也就是在更新完数据库后,如果后面去用这个对象,你再去查这个对象,这个对象是在一级缓存,但是并没有跟数据库同步,此时使用clearAutomatically=true,就会刷新Hibernate的一级缓存, 否则在同一接口中,更新一个对象,接着查询这个对象,那么查出来的这个对象还是之前的没有更新前的状态。

defines whether we should clear the underlying persistence context after executing the modifying query.

翻译:

定义在执行修改查询后是否应该清除底层持久化上下文。

/*
 * Copyright 2008-2016 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by APPlicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.Springframework.data.jpa.repository;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Indicates a method should be regarded as modifying query.
 * 
 * @author Oliver Gierke
 * @author Christoph Strobl
 * @author Nicolas Cirigliano
 */
@Retention(RetentionPolicy.runtime)
@Target({ ElementType.METHOD, ElementType.ANNOTATION_TYPE })
@Documented
public @interface Modifying {

	/**
	 * Defines whether we should flush the underlying persistence context before executing the modifying query.
	 * 
	 * @return
	 */
	boolean flushAutomatically() default false;

	/**
	 * Defines whether we should clear the underlying persistence context after executing the modifying query.
	 * 
	 * @return
	 */
	boolean clearAutomatically() default false;
}

相关阅读

C#中的StreamReader和StreamWriter的基本使用

1:简述       StreamReader :这个是操作字符的,以字符为单位 2:基本使用方法 1 using(StreamReader  reader = new   StreamRea

使用sci-hub下载文献

使用sci-hub下载文献科研工具文献下载SeisPider2017年08月12日科研人员经常要看一些全文,但由于单位不可能花钱购买所有数据库的下

Pthread使用总结

摘要 最近由于开发需要用到多线程,以前看的ARTOOKIT项目中有用到pthread,所以又重新看了一下,重点分析了它的多线程实现。它的实现

淘宝内置搜索功能之图片搜索功能如何使用?

淘宝到目前为止已经深入到千家万户,相信大部分的人手机里面都有手机淘宝软件吧!里面的宝贝种类很丰富,大家想要买的基本都有,下面为

使用Word2007提示“正在配置microsoft office enterpr

问题:以前一直使用Word2003蛮好的,最近听同事说Word2007功能比03功能更加强大,非常好用。于是并下载了个Word2007用用,谁知道自从安装

分享到:

栏目导航

推荐阅读

热门阅读