26

我有一个旧的 struts 1 应用程序,它一直是使用 Ant 构建的,我正在将其转换为使用 Maven。我的应用程序的结构是模块化的,包含模块中的依赖项管理。包含模块的 dep mgmt 部分包含:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.0.1</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
        ...
    </dependencies>
</dependencyManagement>

当我构建战争(我package从包含模块运行 Maven 作业)并使用来自 intelliJ 的战争运行 Tomcat 配置时,我在浏览器中看到以下内容:

org.apache.jasper.JasperException: org.apache.jasper.JasperException: Unable to load class for JSP
org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:161)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:340)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

root cause
org.apache.jasper.JasperException: Unable to load class for JSP
org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:630)
org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:149)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:340)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

root cause
java.lang.ClassNotFoundException: org.apache.jsp.index_jsp
java.net.URLClassLoader$1.run(URLClassLoader.java:202)
java.security.AccessController.doPrivileged(Native Method)
java.net.URLClassLoader.findClass(URLClassLoader.java:190)
org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:134)
org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:66)
org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:628)
org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:149)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:340)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

我可以通过搜索找到的所有内容都表明原因是 javax.servlet jar 中的版本冲突,但我的 WEB-INF/lib 目录中根本没有任何内容。我尝试过使用, 和 even的范围provided,但这些都没有任何帮助。compileinstall/pom

tomcat 日志中没有任何其他内容。

我确认jsps正在编译。我正在使用 jspc-maven-plugin。

在我的子模块(不是包含的)pom.xml 中,我有:

<build>
    <!-- default goal to run if somebody doesn't pick one (rarely matters) -->
    <defaultGoal>install</defaultGoal>

    <!-- resources and filtering - also see configuration under maven-war-plugin below -->
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
        </resource>
    </resources>
    <filters>
        <filter>src/main/resources/${env}.properties</filter>
        <filter>src/main/resources/${env}.tokens</filter>
    </filters>

    <plugins>
        <!-- begin - precompiling jsps -->
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jspc-maven-plugin</artifactId>
            <executions>
                <execution>
                    <id>jspc</id>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                    <configuration>
                        <warSourceDirectory>${basedir}/src/main/webroot</warSourceDirectory>
                        <inputWebXml>${basedir}/src/main/webroot/WEB-INF/web.xml</inputWebXml>
                        <!--<workingDirectory>${basedir}/src/main/webroot</workingDirectory>-->
                    </configuration>
                </execution>
            </executions>
        </plugin>
        <!-- end - precompiling jsps -->

        <!-- used to build warfiles -->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.0</version>
            <configuration>
                <webResources>
                    <resource>
                        <directory>${pom.basedir}/src/main/webroot</directory>
                        <filtering>true</filtering>
                        <!--<targetPath>WEB-INF</targetPath>-->
                    </resource>
                </webResources>
            </configuration>
        </plugin>
    </plugins>
</build>

我可以在 Maven 构建输出中看到正在编译 jsps。但我仍然得到 JasperException。

4

9 回答 9

21

自从我发布这个已经有一段时间了,但我想我会展示我是如何解决这个问题的(我现在记得最好)。

我做了一个 Maven 依赖树来查找依赖冲突,并删除了所有与依赖项中的排除项的冲突,例如:

<dependency>
    <groupId>commons-logging</groupId>
    <artifactId>commons-logging-api</artifactId>
    <version>1.1</version>
    <exclusions>
        <exclusion>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
        </exclusion>
    </exclusions>
</dependency>

此外,我使用了providedjavax.servlet 依赖项的范围,以免在运行应用程序时与 Tomcat 提供的内容产生额外的冲突。

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>2.5</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>javax.servlet.jsp</groupId>
    <artifactId>jsp-api</artifactId>
    <version>2.1</version>
    <scope>provided</scope>
</dependency>

HTH。

于 2014-01-22T20:32:49.773 回答
15

对我不起作用的其他答案的补充:在我的情况下,错误发生是由于权限错误。该项目是在tomcat以root身份运行时部署的,后来当以tomcat用户身份启动时,我从问题标题中得到了错误。

在我的情况下,解决方案是设置正确的权限,例如在 unix 系统上:

cd <tomcat-dir>
chown -R <tomcat-user> *
于 2015-03-25T11:28:47.147 回答
3

我在我的项目中遇到了同样的问题。我使用了 IntelliJ Idea 14 和 Maven 8。我注意到,当我将 tomcat 目标添加到 IDE 时,它会自动链接来自 tomcat lib 目录的两个 jar,它们是 servlet-api 和 jsp-api。我也把它们放在我的 pom.xml 中。我花了一整天试图弄清楚为什么我得到 java.lang.ClassNotFoundException: org.apache.jsp.index_jsp。而kewpiedoll99是对的。那是因为存在依赖冲突。当我在 pom.xml 中向这两个罐子中添加提供时,我发现了一种幸福:)

于 2014-12-08T05:47:13.160 回答
3

我不得不删除 Tomcat 的工作目录,因为它缓存了以前生成的文件。去做这个:

  1. 停止 Tomcat
  2. 删除“工作”目录
  3. 启动Tomcat

这将导致新生成工作目录。

于 2021-02-12T09:58:22.017 回答
2

你用的是什么版本的tomcat?在我看来,tomcat 版本不支持您正在使用的 servlet 和 jsp 版本。您可以更改为类似下面的内容,或者查看您的 tomcat 版本以了解它支持的内容并相应地更改版本。

 <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.0.1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
        </dependency>
于 2013-11-14T05:45:43.997 回答
1

我也浪费了半天的时间试图解决这个问题。

看来 root 是我的项目 pom.xml 具有依赖性的文件:

    <dependency>
        <groupId>javax.servlet.jsp</groupId>
        <artifactId>jsp-api</artifactId>
        <version>2.1</version>
        <scope>provided</scope>
    </dependency>

团队的其他成员没有任何问题。最后它出现了,我得到了更新的tomcat,它提供了不同版本的jsp-api(在tomcat 7.0.60及更高版本中,它将是jsp-api 2.2)。

所以在这种情况下,选项将是:

a) installing different (older/newer) tomcat like (Exactly what I did, because team is on older version)
b) changing dependency scope to 'compile'
c) update whole project dependencies to the actual version of Tomcat/lib provided APIs
d) put matching version of the jsp-api.jar in {tomcat folder}/lib
于 2016-09-22T16:45:56.533 回答
0

这是因为我的情况是这样的:

<jsp-config>
    <jsp-property-group>
        <url-pattern>*.jsp</url-pattern>
        <include-prelude>/headerfooter/header.jsp</include-prelude>
        <include-coda>/headerfooter/footer.jsp</include-coda>
    </jsp-property-group>
</jsp-config>

问题实际上是我的项目中没有 header.jsp。但是错误消息仍然说 index_jsp 没有找到。

于 2015-06-26T11:16:41.207 回答
0

在我的情况下,通过为 tomcat 主路径设置正确的权限来解决问题:

cd /opt/apache-tomee-webprofile-7.1.0/
chown -R tomcat:tomcat *
于 2020-06-17T09:37:25.403 回答
0

在我的情况下,我手动将 .war 文件移动到 /var/lib/tomcat9/webapps 并解压缩,然后在该目录中执行“chown -R tomcat:tomcat *”并解决了它。

于 2020-12-04T09:00:06.653 回答