本文主要是介绍SpringDataJpa的批量 保存 修改 操作,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
SpringDataJpa进行修改数据库操作有两种方式:
一、调用保存实体的方法
1、保存一个实体:repository.save(T entity)
2、保存多个实体:repository.save(Iterable<T> entitys)
3、保存一个实体并立即刷新更改:repository.saveAndFlush(T entity)
注意事项:保存对象时需要确定 PRIMARY KEY和唯一索引。否则会报出“Duplicate entry '1-2-0' for key”这样的错误。
修改对象时,也使用如上方法,但需要确定PRIMARY KEY,如果PRIMARY KEY不存在,则是添加操作。
二、@Query注解(写JPQL语句)
JPQL( Java 持久性查询语言)JPQL 和 SQL 的主要区别在于,前者处理JPA 实体、属性,后者直接在数据库空间内对表、列、行等关系数据进行处理。
JPQL解释:https://blog.csdn.net/qq_33746131/article/details/56479226
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.transaction.annotation.Transactional;
Repositoryk中@Query写JPQL语句:@Query("JPQL语句")
例1 修改操作
@Modifying
@Transactional
@Query("update CityStationGoods csg set csg.isOnsale = ?2 where csg.id = ?1")
int updateOnSaleState(int id, Boolean isOnsale);
例2 使用参数下标
@Modifying
@Transactional
@Query("delete from GoodsActivity ga where ga.activityId = ?1")
void deleteByActivityId(Integer activityId);
例3 使用参数名
@Modifying
@Transactional
@Query("delete from GoodsActivity ga where ga.activityId = :id")
void deleteByActivityId(@Param(value = "id")Integer activityId);
Repositoryk中@Query写SQL语句: @Query(value="SQL语句",nativeQuery = true)
例1
@Query(value = "SELECT IFNULL(SUM(num),0) FROM shopping_cart WHERE member_id =?1", nativeQuery = true)
int getCartNum(Integer memberId);
注意事项:查询时不需要@Modifying注解。@Modifying:指示方法应被视为修改查询。
@Transactional注解:在update或delete时,需要事务提交。如果不写Transactional无法将修改后的操作保存到数据库中。该注解可以写在Service或Repository中。(本例因测试学习,写到了Repository中)
这篇关于SpringDataJpa的批量 保存 修改 操作的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!