在 Tomcat 10.x 上部署 Spring 5.x
TL;DR:我有一个适用于Tomcat 9的Spring MVC Hello, World!应用程序。Tomcat 10 上的同一应用程序为 Web 请求映射提供了 404 错误。
问题
将 Spring MVC 5 Hello, World! 应用程序部署到 Tomcat 10 时,该应用程序会为 Web 请求映射提供 404 错误。同样的 Hello, World! 应用程序适用于 Tomcat 9。它在Tomcat 9上显示“你好,世界!”消息。
我的期望
我预计应用程序会在 Tomcat 10 上显示 Hello, World! 消息。
环境
- 微软视窗 10
- 雄猫 10.0.2
- 弹簧 MVC 5.3.3
我进行的研究
我在春季参考手册中进行了研究,关于Web Servlet的部分。我还在线测试了Spring MVC教程。这些教程适用于Tomcat 9。但是,相同的教程在Tomcat 10上失败了。我还在Tomcat 10上进行了谷歌搜索。我看到了对Jakarta EE的引用,但我不确定这是否是问题的根源。Java EE 8 和 Jakarta EE 8 是向后兼容的。
如何复制
我创建了一个非常基本的Hello,World!项目来测试它。以下是我用于该项目的代码。
File 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.spring</groupId>
<artifactId>example-spring</artifactId>
<version>1.0</version>
<packaging>war</packaging>
<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.3</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
</plugin>
</plugins>
</build>
</project>
文件项目初始化程序.java
package com.example;
import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;
public class ProjectInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
@Override
protected Class<?>[] getServletConfigClasses() {
return new Class[] { PureJavaConfig.class };
}
@Override
protected String[] getServletMappings() {
return new String[] { "/" };
}
@Override
protected Class<?>[] getRootConfigClasses() {
return null;
}
}
File PureJavaConfig.java
package com.example;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.view.InternalResourceViewResolver;
@Configuration
@EnableWebMvc
@ComponentScan("com.example")
public class PureJavaConfig {
@Bean
public ViewResolver viewResolver() {
InternalResourceViewResolver resolver = new InternalResourceViewResolver();
resolver.setSuffix(".jsp");
resolver.setPrefix("/WEB-INF/jsp/");
return resolver;
}
}
文件教程控制器.java
package com.example;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class TutorialController {
@GetMapping("/")
public String home() {
return "home";
}
}
文件主页.jsp
<html>
<body>Hello, World! of Spring! <%= java.time.LocalDateTime.now() %></body>
</html>
这个项目在Tomcat 9上运行良好。它显示“你好,世界!”消息。但是,当我在Tomcat 10上运行时,我收到404错误消息。