我需要原子地在数据库中保留一些实体,但是我遇到了一些困难...... 我有4个实体:Emitente,NotaFiscal,Item和Duplicata。 实体项和重复数据取决于依赖于Emitente的NotaFiscal。 所以,我的dao类尝试持有Emitente然后NotaFiscal然后Duplicata,最后是Item。 但是当我试图坚持NotaFiscal我收到一个错误,说Emitente不存在。 使用entityManager.getTransaction()正确地持久保存了这些相同的实体.start();当这个程序是桌面时... ...
这是调用所有Dao类的类:
public class ControladorArmazenamentoNFeCompleta extends BaseDao implements
IControladorArmazenamentoNotaFiscalCompleta {
private static final long serialVersionUID = 1L;
private IControladorArmazenamentoNFe armazenadorNFe;
private IControladorArmazenamentoElementoNFe<Item> armazenadorItem;
private IControladorArmazenamentoEmitente armazenadorEmitente;
private IControladorArmazenamentoElementoNFe<Duplicata> armazenadorDuplicata;
private String mensagemErro;
public ControladorArmazenamentoNFeCompleta(
EntityManagerFactory entityManagerFactory) {
super(entityManagerFactory);
}
public StatusArmazenamento criar(NotaFiscal bean) {
if (armazenarEmitente(bean)) {
if (armazenadorNFe.recuperarPelaChave(bean.getId()) == null) {
if (armazenadorNFe.criar(bean)) {
if (armazenarDuplicatas(bean)) {
if (armazenarItens(bean)) {
return StatusArmazenamento.SUCESSO;
} else {
mensagemErro = armazenadorItem
.getMensagemErro();
}
} else {
mensagemErro = armazenadorDuplicata
.getMensagemErro();
}
} else {
mensagemErro = armazenadorNFe.getMensagemErro();
}
} else {
mensagemErro = "A nota fiscal já foi importada!";
return StatusArmazenamento.IMPORTADA_ANTERIORMENTE;
}
}
return StatusArmazenamento.ERRO;
}
private boolean armazenarEmitente(NotaFiscal bean) {
if (armazenadorEmitente.recuperarPeloId(bean.getEmitente()
.getNumeroCadastroNacional()) == null) {
if (!armazenadorEmitente.criar(bean.getEmitente())) {
mensagemErro = armazenadorEmitente.getMensagemErro();
return false;
}
}
return true;
}
private boolean armazenarDuplicatas(NotaFiscal notaFiscal) {
armazenadorDuplicata.setChaveNotaFiscal(notaFiscal.getId());
Cobranca cobranca = notaFiscal.getCobranca();
if (cobranca != null) {
for (Duplicata duplicata : cobranca.getListaDeDuplicatas()) {
if (!armazenadorDuplicata.criar(duplicata))
return false;
}
}
return true;
}
private boolean armazenarItens(NotaFiscal notaFiscal) {
armazenadorItem.setChaveNotaFiscal(notaFiscal.getId());
if (notaFiscal.getListaDeItens() == null)
return false;
for (Item item : notaFiscal.getListaDeItens()) {
if (!armazenadorItem.criar(item))
return false;
}
return true;
}
这是弹簧配置:
<bean id="transactionManager"
class="org.springframework.transaction.jta.JtaTransactionManager" />
<tx:advice id="txDao">
<tx:attributes>
<tx:method name="recuperar*" read-only="true" />
<tx:method name="criar" rollback-for="PreexistingEntityException,Exception"/>
<tx:method name="editar"
rollback-for="IllegalOrphanException,NonexistentEntityException,Exception"/>
</tx:attributes>
</tx:advice>
<tx:advice id="txControlador">
<tx:attributes>
<tx:method name="criar" rollback-for="Exception"/>
<tx:method name="atualizar" rollback-for="Exception"/>
</tx:attributes>
</tx:advice>
<aop:config>
<aop:pointcut id="operacoesDao"
expression="execution(* com.hrgi.persistencia.dao.*.*(..))" />
<aop:pointcut id="operacoesCadastroDao"
expression="execution(* com.hrgi.persistencia.cadastro.dao.interfaces.*.*(..))" />
<aop:pointcut id="operacoesBancoDao"
expression="execution(* com.hrgi.persistencia.banco.dao.interfaces.*.*(..))" />
<aop:pointcut id="operacoesNFeDao"
expression="execution(* com.hrgi.persistencia.nfe.dao.interfaces.*.*(..))" />
<aop:pointcut id="operacoesControladorArmazenamento"
expression="execution(* com.hrgi.persistencia.*.*(..))" />
<aop:pointcut id="operacoesControladorArmazenamentoNFe"
expression="execution(* com.hrgi.persistencia.nfe.controladores.interfaces.*.*(..))" />
<aop:advisor advice-ref="txDao" pointcut-ref="operacoesDao" />
<aop:advisor advice-ref="txDao" pointcut-ref="operacoesCadastroDao" />
<aop:advisor advice-ref="txDao" pointcut-ref="operacoesBancoDao" />
<aop:advisor advice-ref="txDao" pointcut-ref="operacoesNFeDao" />
<aop:advisor advice-ref="txControlador"
pointcut-ref="operacoesControladorArmazenamento" />
<aop:advisor advice-ref="txControlador"
pointcut-ref="operacoesControladorArmazenamentoNFe" />
</aop:config>
我该怎么做才能解决它?
答案 0 :(得分:0)
我解决了简单改变传播的问题:
<tx:advice id="txDao">
<tx:attributes>
<tx:method name="recuperar*" read-only="true" />
<tx:method name="criar" rollback-for="PreexistingEntityException,Exception"
propagation="REQUIRED" />
<tx:method name="editar"
rollback-for="IllegalOrphanException,NonexistentEntityException,Exception"
propagation="REQUIRED" />
</tx:attributes>
</tx:advice>
<tx:advice id="txControlador">
<tx:attributes>
<tx:method name="criar" rollback-for="Exception"
propagation="REQUIRES_NEW" />
<tx:method name="atualizar" rollback-for="Exception"
propagation="REQUIRES_NEW" />
</tx:attributes>
</tx:advice>
感谢您的关注。