ConfigServletWebServerApplicationContext: 嵌套异常是 java.lang.NoClassDefFoundError: jakarta/servlet/jsp/
Posted
技术标签:
【中文标题】ConfigServletWebServerApplicationContext: 嵌套异常是 java.lang.NoClassDefFoundError: jakarta/servlet/jsp/JspFactory using Tomcat 10 - Spring【英文标题】:ConfigServletWebServerApplicationContext: nested exception is java.lang.NoClassDefFoundError: jakarta/servlet/jsp/JspFactory using Tomcat 10 - Spring 【发布时间】:2021-09-28 07:44:29 【问题描述】:我正在尝试从Youtube 制作 SpringBoot 教程。但在 IntelliJ + Maven 中,而不是 Eclipse。在 1 小时后,他们添加了 jasper 依赖项,然后运行程序,它运行良好。
在我添加 jasper 依赖项之前,我没有错误。添加后,我收到此错误:
Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is java.lang.NoClassDefFoundError: jakarta/servlet/jsp/JspFactory.
这是我的主要应用文件:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
@SpringBootApplication
public class CoursesWebApp
public static void main(String[] args)
SpringApplication.run(CoursesWebApp.class, args);
和控制器文件
package com.example.springboot;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class CoursesController
@RequestMapping("/courses")
public void coursesDisplay()
System.out.println("Welcome to courses!");
//return "course.jsp";
这是我的 pom.xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>spring-boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-boot</name>
<description>Project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jersey</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web-services</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jasper</artifactId>
<version>10.0.8</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
我已经安装了 Tomcat 10.0.8 版本,并匹配了 Jasper 相同的版本。
我尝试制作public class CoursesWebApp extends SpringBootServletInitializer
,没有成功。
有@SpringBootApplication
的注解。
我尝试添加
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
将范围更改为默认值或编译后,不起作用。
我对此完全陌生,我不知道如何解决它。感觉像是小东西,但我看不到。
提前感谢您的帮助!
【问题讨论】:
【参考方案1】:Spring Boot 不提供内置视图支持,我们必须在 Spring Boot 项目中显式创建视图。 Jasper 用于将 JSP 页面编译成应用服务器上的 servlet,但 Spring boot 支持 Tomcat 10 和 Jasper 10 不支持的 Servlets 4.0 API。使用较低版本的 tomcat 和 Jasper 解决了 Boot 应用程序中的上述问题。确保你使用的Tomcat和Jasper版本相近,否则会再次报错。
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<version>9.0.55</version>
</dependency>
Tomcat and jasper version must match
【讨论】:
【参考方案2】:Tomcat 10 实现了 Spring Boot 尚不支持的 Servlet 5.0 和 JSP 3.0 API。您应该改用实现 Servlet 4.0 和 JSP 2.3 的 Tomcat 9.0.x。
【讨论】:
谢谢!我将其更改为 Tomcat 9.0.50,但它仍然无法使用上面显示的依赖项,因为我得到了FileNotFoundException thrown from StandardJarScanner
。 但是我将tomcat-jasper
更改为tomcat-embed-jasper
,我在最后提到了它并且有效。【参考方案3】:
您是否尝试在网上找到答案 - 最好的方法是通过 stacktrace 找到。 检查例如这个答案***
【讨论】:
我试过那个解决方案,它对我不起作用:(以上是关于ConfigServletWebServerApplicationContext: 嵌套异常是 java.lang.NoClassDefFoundError: jakarta/servlet/jsp/的主要内容,如果未能解决你的问题,请参考以下文章