我的系统信息:
IDE: Eclipse Blue 10.0,
Server: Websphere 7.0
Build Management Tool: Maven 3.0
我使用以下配置在我的 Maven 项目中执行编译时编织:
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<!-- <goal>test-compile</goal> -->
</goals>
</execution>
</executions>
<configuration>
<aspectLibraries>
<aspectLibrary>
<groupId>com.xxx.logger</groupId>
<artifactId>my-aspect-logger</artifactId>
</aspectLibrary>
</aspectLibraries>
<showWeaveInfo>true</showWeaveInfo>
<outxml>true</outxml>
<Xlint>warning</Xlint>
<verbose>true</verbose>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
</plugins>
</build>
在开发过程中,我使用以下路径在 Eclipse 中以分解模式添加我的 EAR 文件:
Windows > Show View > Servers > WebSphere 7 > Right Click > Add Deployment
我面临一个问题,即每当我更改我的 java 类时,这些类都会被编译并热部署在服务器中。但是,它们没有重新编织。但是,如果我删除 EAR,从命令提示符构建我的项目并重新部署它,它就会正常工作。
有人可以帮我解决这个问题。