从jpa存储库调用findAll()时,表正在更新

时间:2017-04-13 06:41:49

标签: java hibernate spring-boot spring-data-jpa

当我从存储库调用此findAll()时,产品表正在更新。我需要限制更新产品表。

public interface ProductRepository extends JpaRepository<Product,BigInteger>{

}

public Product getProductData(){

        Product product = productRepository.findAll();
        return product;

    }

0 个答案:

没有答案