首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

用Maven建立Spring的eclipse工程时aspectj.jar包丢失有关问题

2012-10-06 
用Maven建立Spring的eclipse工程时aspectj.jar包丢失问题忘记什么原因了,好像是eclipse还是maven的eclipse

用Maven建立Spring的eclipse工程时aspectj.jar包丢失问题

忘记什么原因了,好像是eclipse还是maven的eclipse插件在生成classpath的时候,判断如果有aspectj,就直接忽略

?

因此在在maven的pom.xml文件里面要添加上如下配置

?

<plugin>    <groupId>org.apache.maven.plugins</groupId>    <artifactId>maven-eclipse-plugin</artifactId>    <configuration>        <ajdtVersion>none</ajdtVersion>        <wtpversion>2.0</wtpversion>        <downloadSources>true</downloadSources>        <downloadJavadocs>false</downloadJavadocs>        </configuration></plugin>

??仅此记录~~~

1 楼 lyqidao 2010-03-22   朋友希望你能加入到spring的圈子来 和大家一起分享 学习

热点排行