我是Maven的新手,这可能是个愚蠢的问题.我的问题是我在
Eclipse Luna版本中创建了动态Web项目.我在pom中添加了一些工件. JAXRS和DOM4J.它下载了所有的罐子.
我可以在我的代码中导入JAXRS类,而无需在lib文件中添加jaxrs.
但我无法访问DOM4J类.我使用web-sphere作为我的服务器.
请帮我解决dom4j问题.提前致谢.
POM文件..我删除了这篇文章的一些条目.
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.app</groupId>
<artifactId>.......</artifactId>
<version>1</version>
<build>
<defaultGoal>install</defaultGoal>
</build>
<dependencies>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
.....
.....
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.5</version>
</dependency>
</dependencies>
</project>
我的班级路径
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/WebSphere Application Server v8.0 JRE">
<attributes>
<attribute name="owner.project.facets" value="java"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path=".apt_generated">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="src" path="src/main/resources"/>
<classpathentry kind="con" path="org.eclipse.jst.server.core.container/com.ibm.ws.ast.st.runtime.runtimeTarget.v80/WebSphere Application Server v8.0">
<attributes>
<attribute name="owner.project.facets" value="jst.web"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
<classpathentry kind="output" path="WebContent/WEB-INF/classes"/>
</classpath>
我使用Websphere 8作为我的服务器.
最佳答案 如果按照你的提到下载了Jar,那么只需要在eclipse中执行此操作,如果你从市场添加Maven然后它就好了,如果不是那么添加这个然后
Right click on your Project->Maven->Update the Project
它将解决与依赖相关的问题.
要么
试试这个命令
mvn clean -U
mvn clean install -U
mvn eclipse:eclipse -U
见Maven: The Complete Reference, 6.1.11. Downloading and Verifying Dependencies或mvn –help:
06002