为啥我的servlet程序总是运行不成功呢?classpath我也设置了。总是发生这样的错误:
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥我的servlet程序总是运行不成功呢?classpath我也设置了。总是发生这样的错误:相关的知识,希望对你有一定的参考价值。
参考技术A 可能servlet文件已经损坏了,你删了重新创建一个看一下。 参考技术B 建议使用IDE编译为啥我在运行简单的 Spring Boot 应用程序时总是得到状态为“404”的 Whitelabel 错误页面
【中文标题】为啥我在运行简单的 Spring Boot 应用程序时总是得到状态为“404”的 Whitelabel 错误页面【英文标题】:Why do I always get Whitelabel Error Page with status "404" while running a simple Spring Boot Application为什么我在运行简单的 Spring Boot 应用程序时总是得到状态为“404”的 Whitelabel 错误页面 【发布时间】:2017-01-30 10:25:51 【问题描述】:我的控制器
@Controller
//@RequestMapping("/")
//@ComponentScan("com.spring")
//@EnableAutoConfiguration
public class HomeController
@Value("$framework.welcomeMessage")
private String message;
@RequestMapping("/hello")
String home(ModelMap model)
System.out.println("hittin the controller...");
model.addAttribute("welcomeMessage", "vsdfgfgd");
return "Hello World!";
@RequestMapping(value = "/indexPage", method = RequestMethod.GET)
String index(ModelMap model)
System.out.println("hittin the index controller...");
model.addAttribute("welcomeMessage", message);
return "welcome";
@RequestMapping(value = "/indexPageWithModel", method = RequestMethod.GET)
ModelAndView indexModel(ModelMap model)
System.out.println("hittin the indexPageWithModel controller...");
model.addAttribute("welcomeMessage", message);
return new ModelAndView("welcome", model);
/WEB-INF/jsp 中的我的 JSP (welcome.jsp)(父文件夹是 WebContent)
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome to Spring Boot</title>
</head>
<body>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
Message: $message
</body>
</html>
我的 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>SpringBootPlay</groupId>
<artifactId>SpringBootPlay</artifactId>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.0.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-log</artifactId>
<version>0.17</version>
</dependency>
</dependencies>
<properties>
<java.version>1.8</java.version>
<start-class>com.spring.play.BootLoader</start-class>
<main.basedir>$basedir/../..</main.basedir>
<m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
</plugins>
</build>
</project>
我的应用初始化程序
@EnableAutoConfiguration
@SpringBootApplication
@ComponentScan( "com.spring.controller" )
@PropertySources(value = @PropertySource("classpath:/application.properties") )
public class BootLoader extends SpringBootServletInitializer
final static Logger logger = Logger.getLogger(BootLoader.class);
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application)
return application.sources(BootLoader.class);
public static void main(String[] args)
SpringApplication.run(BootLoader.class, args);
我什至在我的 pom.xml 中添加了 thymeleaf
依赖项。它仍然没有工作。当我点击localhost:8080/hello or /indexPage or /indexPageWithModel
时,它总是说
白标错误页面
此应用程序没有显式映射 /error,因此您将其视为后备。
2016 年 9 月 21 日星期三 21:34:18 EDT 出现意外错误(类型=未找到,状态=404)。 ]/WEB-INF/jsp/welcome.jsp
我的应用程序.properties
spring.mvc.view.prefix: /WEB-INF/jsp/
spring.mvc.view.suffix: .jsp
framework.welcomeMessage=Welcome to Dashboard
请帮助我。谢谢!
【问题讨论】:
可能是你的包命名问题。检查这个答案https://***.com/questions/49034254/spring-boot-whitelabel-error-page-type-not-found-status-404 【参考方案1】:这是几乎所有 Spring Boot 初学者都面临的最常见错误之一。
解决方案非常简单,您的 Bootstrap 类应该知道它应该引用的包或类路径,以便访问组件/控制器。因此,您需要指定如下:- @ComponentScan(basePackages= "org.test.controller")
P.S.- 这里的“org.test.controller”是我保存控制器的包的限定名称。
【讨论】:
不错!在我的情况下,它位于主类的同级包中。 我解决了将控制器移动到同一个包的问题。子包也可以。【参考方案2】:我自己想出来的。
当我将我的动态 webproject 转换为 maven 项目时,它并没有以这种方式创建文件夹结构
src/main/java
和
src/main/resources
和
src/main/webapp
我自己手动创建并将jsp文件从WebContent/WEB-INF/jsp
移动到src/main/webapp/WEB-INF/jsp
并修改了项目属性中的Java build path
。
然后我重新启动embedded tomcat
并再次尝试。它奏效了。
【讨论】:
【参考方案3】:Whitelabel 错误页面的一般故障排除指南:
为 Spring Web 处理启用跟踪日志记录。添加到您的application.properties
:
logging.level.org.springframework.web.*=TRACE
有了这个,您可以在启动期间查看您的控制器是否已正确注册。例如,您应该在日志中看到带有一个映射 GET 方法的 HelloController:
2020-08-20 08:56:55.731 TRACE 19687 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.n.g.c.HelloController:
GET /hello: sayHello()
如果您看到记录了您的控制器方法,则它已正确注册。如果没有,请遵循为正确的项目结构提供的其他建议。
如果控制器已正确注册,但仍然出现白标错误页面,则可能是以下情况之一:
您使用错误的 url/方法/内容类型调用端点 您的端点发生错误 您没有返回正确的响应(这可能导致 Spring 显示错误页面)这些情况中的哪一种,也应该从生成的日志中揭示出来。狩猎愉快!
【讨论】:
【参考方案4】:此类错误的原因是由于 Bootstrap 类不知道需要查看的控制器的位置。
在这种情况下,我们需要指定可以使用的包或类路径
@ComponentScan(basePackages="com.sample.controller")
在我的情况下,我将包指定为com.sample.controller
。
【讨论】:
【参考方案5】:有时可能是因为缺少@Controller 或@RestController 注解。
Sample Program With @RestController Annotation
【讨论】:
虽然此链接可能会回答问题,但最好在此处包含答案的基本部分并提供链接以供参考。如果链接页面发生更改,仅链接答案可能会失效。 - From Review以上是关于为啥我的servlet程序总是运行不成功呢?classpath我也设置了。总是发生这样的错误:的主要内容,如果未能解决你的问题,请参考以下文章
各位大神,我的eclipse为啥安装不了,JDK总是提示说啥DLL?我之前安装过俩次都成功了,
为啥我的宽带总是断 ,显示是到 宽带连接 的链接没有成功 ?