为了账号安全,请及时绑定邮箱和手机立即绑定

Spring Boot - 无法解决白标签错误页面

Spring Boot - 无法解决白标签错误页面

UYOU 2021-10-06 12:41:43
我试图从 2 天开始运行一个简单的 Spring 启动应用程序,但仍然无法使其工作。我检查了所有相关的问题和博客,但问题仍然存在。我的项目结构如下所示。POM文件<parent>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-parent</artifactId>    <version>2.0.5.RELEASE</version>    <relativePath/> <!-- lookup parent from repository --></parent><properties>    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>    <java.version>1.8</java.version></properties><dependencies>    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-web</artifactId>    </dependency>    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-tomcat</artifactId>        <scope>provided</scope>    </dependency>    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-test</artifactId>        <scope>test</scope>    </dependency>     <dependency>        <groupId>javax.servlet</groupId>        <artifactId>jstl</artifactId>    </dependency></dependencies>
查看完整描述

3 回答

?
饮歌长啸

TA贡献1951条经验 获得超3个赞

添加@RestController而不是@Controller. 然后运行您的 Java 应用程序。这应该可以解决WhiteLabel错误


查看完整回答
反对 回复 2021-10-06
?
largeQ

TA贡献2039条经验 获得超7个赞

请确保所有类都在根包下。我在这个错误上花了几个小时。我的应用程序在自定义端口 8085 上运行,但是在访问该端口时没有响应。我没有在控制台中收到错误。在root包下重组包后。错误已解决!!!!!!!!!!



查看完整回答
反对 回复 2021-10-06
  • 3 回答
  • 0 关注
  • 362 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信