- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试运行 Spring Boot 以处理 JSP 页面时遇到一些困难。我知道文档中提供的限制,所以一切都按照规则进行。但是,找不到问题。
我会尽量提供尽可能多的信息。
想开始使用 Spring Boot。我正在使用:
IntelliJ IDEA、Maven、Maven Spring Boot 插件、嵌入式 Tomcat。 Link到项目样本。
REST Controller 工作正常,但是当我尝试将 jsp 链接到公共(public) Controller 时,我 100% 最终出现 Whitelabel 错误页面,指出 404。
从 WEB-INF
移动文件至resources/static
没有帮助。
问题是,即使我尝试运行最简单的快速启动 Spring Boot 项目,我也面临着异常。 Here当我尝试从 mkyong 站点加载示例时的异常日志。
我试图手动管理 maven 依赖项,因为我浏览了一些“潜在”的解决方案,发现它可能是 jar 冲突。我什至试图在一个全新的操作系统上启动这个项目——这就是我绝望的程度。
任何指导都将被视为神圣的珍宝。
更新
尝试使用 mvn spring-boot
再次运行项目时添加后javax.servlet-api
在依赖项中出现以下错误。日志:
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-
maven-plugin:1.4.5.RELEASE:run (default-cli) on project demo: An
exception occurred while running. null: InvocationTargetException:
Unable to start embedded container; nested exception is org.springframework.boot.context.embedded.EmbeddedServletContainerExceptio
n: Unable to start embedded Tomcat: Failed to start component
[StandardServer[-1]]: Failed to start component [StandardService[Tomcat]]:
Failed to start component [StandardEngine[Tomcat]]: A child container
failed during start -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with
the -
e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
最佳答案
出于某种原因,您的代码有两个 webapp 文件夹。 下的一个(位置错误) src/另一个在(正确) 下src/main/ .现在你的 WEB-INF/jsp 是错误的。因此,将其移动到相应的文件夹。
关于Spring Boot Whitelabel 错误页面几乎无处不在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44007326/
尝试运行 Spring Boot 以处理 JSP 页面时遇到一些困难。我知道文档中提供的限制,所以一切都按照规则进行。但是,找不到问题。 我会尽量提供尽可能多的信息。 想开始使用 Spring Boo
我是 Spring 新手。我目前正在遵循 T 教程并遇到“Whitelabel 错误页面”。我已经完成了研究,检查Spring boot - Whitelabel Error Page和 Spring
我正在尝试学习使用 SpringBoot 部署简单的 REST 服务。以下是我正在使用的类文件。 @SpringBootApplication public class App { publi
这是 demoApplication 类 package com.example.demo; import org.springframework.boot.SpringApplication; im
@RequestMapping(method = RequestMethod.GET, value = "/add") public ModelAndView add() throws Con
@RequestMapping(method = RequestMethod.GET, value = "/add") public ModelAndView add() throws Con
package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframew
我在使用 html 模板运行我的第一个 Java Spring 项目时遇到问题。我将模板放入 src/main/resources/templates 中。 Controller 方法调用成功。但模板
我正在尝试删除白标错误页面,所以我所做的是为“/error”创建了一个 Controller 映射, @RestController public class IndexController {
在本文中,我们将介绍著名的 Spring Boot Whitelabel 错误页面。我们将介绍如何禁用默认错误页面以及如何在您的 Spring Boot 应用程序中自定义 Whit
我使用 SpringBoot 开发了一个应用程序,该应用程序具有 Web 服务,并包括使用 ReactJs 生成和编码的前台。默认情况下,它在端口 8080 上启动。为了更容易输入 URL,我想将应用
我尝试使用模板 thymeleaf 创建页面界面,但映射时出现错误。 任何时候都可以帮助我。 附上错误截图和代码 最佳答案 如果您使用 spring mvc,当您返回字符串时,这意味着您返回为 Vie
我在运行 Spring Boot 应用程序时收到“Whitelabel 错误页面”,即使在映射 URL 后也是如此。 我已经提到了我的 application.properties 文件和一个 Con
我在运行 Spring/Hibernate 应用程序后遇到问题。错误是: Whitelabel Error Page This application has no explicit mapping
我试图运行一个简单的 Spring boot 应用程序 2 天,但仍然无法使其工作。我检查了所有相关问题和博客,但问题仍然存在。 我的项目结构如下所示。 POM.xml org.spring
我正在从链接开发代码:https://www.dineshonjava.com/microservices-with-spring-boot/并与 Finchley.SR1 合作和 spring-bo
无法使用 spring-boot 加载非常简单的 JSP 页面,出现 404 Not Found 应用程序类 @SpringBootApplication public class HmisAppli
我不是专业的 Spring Boot 开发人员。我正在教程的帮助下编写一个程序,并且正在使用 Hateoas 和 Rest,当我返回请求的响应时,我收到一个白标签错误页面。 当我尝试使用 System
我从 springinitializr 下载了一个示例演示项目 web依赖性。然后我创建了这个类。 package com.example.demo; import org.springframewo
我正在尝试将我的 spring mvc 项目转换为 spring boot。我根据spring boot转换了所有必要的文件。控制台上没有错误。但是当我在浏览器中运行我的网络应用程序时,我收到了这个错
我是一名优秀的程序员,十分优秀!