我正在创建一个使用 aspectj 事务的新项目。它还使用包含服务的遗留 jar,这些服务在需要接口的情况下使用代理方法。
我正在使用 java config 并且当我设置
@EnableTransactionManagement(mode=AdviceMode.ASPECTJ)
然后我从遗留库访问代理样式服务时抛出以下异常:
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
如果我改为:
@EnableTransactionManagement(mode=AdviceMode.PROXY)
然后我没有得到问题,但是我不能在我的新项目中使用 aspectj 样式的事务。
我尝试@EnableTransactionManagement
为每个adviceMode 添加两个注释,但这是不允许的。
这是带注释的类
@EnableWebMvc
@Configuration
@ComponentScan("com.mydomain")
@EnableTransactionManagement(mode=AdviceMode.ASPECTJ)
public class ApplicationConfig extends WebMvcConfigurerAdapter {
...
我还在遗留项目中添加了 aspectj maven 插件,希望它能够在编译时处理编织,因此 aspectj 事务可以工作。但这并没有解决问题。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.7</version>
<configuration>
<aspectLibraries>
<aspectLibrary>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</aspectLibrary>
</aspectLibraries>
<complianceLevel>1.8</complianceLevel>
<source>1.8</source>
<target>1.8</target>
<showWeaveInfo>true</showWeaveInfo>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
是否可以让 spring 处理两种建议模式?我该怎么做?
或者有没有其他方法可以解决这个问题。