3

我正在构建一个简单的 Maven 项目。我使用构建路径添加json为第三方库并将其添加到web-inf库中。最后,我在pom.xml. 但是,通过上述所有努力,我仍然得到这个例外。任何信息和建议表示赞赏!

以下是例外

SEVERE: Servlet.service() for servlet [sfmserver] in context with path [/mysfmovies] threw exception [Servlet execution threw an exception] with root cause
java.lang.ClassNotFoundException: org.json.JSONException

下面是我的 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.mysfmovies</groupId>
  <artifactId>mysfmovies</artifactId>
  <packaging>war</packaging>
  <version>0.0.1-SNAPSHOT</version>
  <name>mysfmovies Maven Webapp</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
      <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
            <scope>provided</scope>
    </dependency>
            <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.1.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>2.1.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20090211</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.google.code.geocoder-java</groupId>
            <artifactId>geocoder-java</artifactId>
            <version>0.16</version>
            <scope>provided</scope>
        </dependency>
  </dependencies>
  <build>
    <finalName>mysfmovies</finalName>
  </build>
</project>
4

3 回答 3

5

你可以解决这个添加以下依赖项(http://mvnrepository.com/artifact/org.json/json/20080701

<dependency>
   <groupId>org.json</groupId>
   <artifactId>json</artifactId>
   <version>20080701</version>
</dependency>
于 2015-02-17T20:18:07.163 回答
0

您已将所有依赖项放在提供的范围内。这意味着 maven war 插件不会将它们放入 WEB-INF/lib 目录,因此当您运行 Web 应用程序时它们不会位于类路径中。您确实应该将它们放入编译范围(这是默认范围,只需删除标签)。

如果您仍然真的希望提供它们,请将它们放入容器的 lib 目录,或检查 war 插件的 endorsedDirs 配置。

于 2014-12-26T10:08:40.917 回答
0

移除 JSONException 并将其替换为普通异常。这为我解决了这个问题。报错原因有点复杂,和新版本中部分包的jar优化有关。

于 2021-08-09T09:20:59.597 回答