Entity must be managed to call remove
struts2.0 spring2.5 jpa :
: Servlet.service() for servlet default threw exception
java.lang.IllegalArgumentException: Entity must be managed to call remove: com.ctit.pojo.Student@1cd2197, try merging the detached and try the remove again.
나는 인터넷에서 오랫동안 찾았지만 해결 방법을 찾지 못했다.이제 내가 해결했어.
두 가지 원인이 있다.
1. dao :
public void deleteStudent(Student student) {
Student mergeStudent = this.getJpaTemplate().merge(student);
getJpaTemplate().remove(mergeStudent);
}
merge, 。
2: applicationContext.xml , 。 service 。
<!-- ASPECT CONFIGURATION -->
<aop:config>
<aop:pointcut id="monsterManager" expression="execution(* com.ctit.service.*.*(..))" />
<aop:advisor pointcut-ref="monsterManager" advice-ref="monsterAdvice"/>
</aop:config>
<tx:advice id="monsterAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="insert*" propagation="REQUIRED"/>
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="update*" propagation="REQUIRED"/>
<tx:method name="delete*" propagation="REQUIRED"/>
<tx:method name="register*" propagation="REQUIRED"/>
<tx:method name="create*" propagation="REQUIRED"/>
<tx:method name="*" />
</tx:attributes>
</tx:advice>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Spring에서 DAO가 순환 호출될 때 데이터가 실시간으로 업데이트되지 않는 해결 방법문제를 설명하기 전에 몇 가지 전제 사항을 설명하십시오. Spring의 구성 파일에서 다음과 같은 방식으로 데이터베이스 트랜잭션을 구성했다고 가정하십시오. 현재 UserDao 및 Security Service가 있습...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.