问题描述
我目前正在开发一个使用Jersey for REST的Web应用程序。我使用maven,并且stax-api-1.0.1和1.0.2都被拉入我的web-inf / lib。我认为stax api是JDK1.6的aprt?
I am currently developing a web app that uses Jersey for REST. I use maven, and both stax-api-1.0.1 and 1.0.2 are pulled into my web-inf/lib. I thought the stax api were a aprt of JDK1.6?
为什么这些JARS包含在我的网络应用程序中?
Why are those JARS included in my web application?
这是我的pom.xml
Here is my pom.xml
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.glennbech</groupId>
<artifactId>simplerest</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>Simplerest Maven Webapp. Very simple REST.</name>
<url>http://maven.apache.org</url>
<dependencies>
<!-- Jersey for REST -->
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.17</version>
</dependency>
</dependencies>
<build>
<finalName>simplerest</finalName>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.25</version>
<configuration>
<contextPath>/</contextPath>
<scanIntervalSeconds>5</scanIntervalSeconds>
</configuration>
</plugin>
</plugins>
</build>
推荐答案
问题的评论栏中回答了这个问题。感谢Paul Grime。
This question was answered in the comment field of the question. Kudos to Paul Grime.
是的,[使用maven排除修复它]将是最简单的解决方案IMO。下一步可能是为不同的目标运行时创建不同的配置文件。例如。 1.6配置文件将排除stax等,但1.5配置文件将使它们保留。
Yeah, [fixing it using maven exclusions] would be the easiest solution IMO. A next step could be to create different profiles for different target runtimes. E.g. a "1.6" profile would exclude stax etc, but a "1.5" profile would leave them in.
这篇关于使用JDK 1.6时,我的Web应用程序中是否需要stax-api-1.0.x?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!