标签: spring spring-data-jpa
我有一个实体列表。保存它的最佳方法是什么?目前,我正在使用for循环,这需要记录时间:
List <Customer> cust: for (Customer c: cust) { custRepository. save(c) }