在我的spring应用程序中,我在后端使用Spring 4.X和Plain hibernate。我必须批量插入Customer对象。但是有一段时间后我出现内存错误。我正在使用spring的声明性事务,即在服务层使用@Transactional
注释。在这种情况下,我该如何进行批量插入。
代码
@Transactional(value="transactionManager",readOnly=false, propagation=Propagation.REQUIRED)
public Customer add(CustomerForm customerForm, Errors errors, MultipartFile photo)
{
已编辑
我不想手动使用sessionFactory和session。和我在后端使用hibernate模板。 -