我正在从事的项目与DAOs
下面的项目具有类似的结构:
/**
* Base DAO class
*/
@Transactional
public class JPABase {
@PersistenceContext
private EntityManager entityManager;
public void persist(Object entity) {
entityManager.persist(entity);
}
//some more methods in here
}
和
/**
* Generic DAO class implementation
*/
@Transactional
public abstract class GenericDao extends JpaBase {
//some methods in here
}
和
/**
* Specialized DAO class
*/
@Repository
@Transactional
public class PersonDao extends GenericDao {
//some methods in here
}
到目前为止,该项目使用编译时编织,但配置已更改为使用<context:load-time-weaver/>
with -javaagent:/opt/tomcat7-1/lib/spring-instrument.jar
。
由于已应用此更改,因此不再编织JpaBase
' 和GenericDao
'注释。@Transactional
每次服务类调用对象的persist
方法时PersonDao
,都不会启动事务。
值得注意的是:
- 这在过去使用编译时编织时可以工作。
- 中定义的所有方法都
PersonDao
正确编织,但继承的方法(例如persist(Object entity)
)未编织。
编译时间编织和加载时间编织应该做同样的事情,只是在不同的时刻。为什么编织行为发生了变化?