如何避免 localhost:8080 上的白标错误 (404)?
How do I avoid the white label error(404) on localhost:8080?
我已经在这里和其他论坛上转了几个小时了,但我仍然没有发现我做错了什么。我用 MongoDB 构建了一个简单的 Spring-Boot 应用程序,当我 运行 它时,我在控制台中没有任何错误,但无论我做什么,我都会不断收到白色标签错误。我的主控制器和控制器 classes 在不同的包中,但我使用了@ComponentScan。我还添加了 Web 应用程序文件夹,认为它会修复它,但显然这不是问题所在。我还将所有必要的映射添加到控制器 class。这些是我见过的最常见的解决方案,但我仍然遇到同样的错误。
<?xml version="1.0" encoding="UTF-8"?>
4.0.0
org.springframework.boot
spring-boot-starter-parent
2.3.5.RELEASE
com.example
卡梅拉特
0.0.1-快照
卡梅拉特
Spring Boot
的演示项目
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
Screenshot of Controller class
在您的 Web 控制器上使用 @RestController 并且您必须在 pom.xml
中添加以下依赖项
如果可能,请分享您的网络控制器和pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
您遇到此错误是因为 spring 引导没有默认网页
Screenshot with the error
要修复它,您只需在 sr/main/resources/statics 目录
中添加一个简单的 html 文件 (index.html)
Screenshot of the config to do
那么你将拥有:
Screenshot after the fix
我已经在这里和其他论坛上转了几个小时了,但我仍然没有发现我做错了什么。我用 MongoDB 构建了一个简单的 Spring-Boot 应用程序,当我 运行 它时,我在控制台中没有任何错误,但无论我做什么,我都会不断收到白色标签错误。我的主控制器和控制器 classes 在不同的包中,但我使用了@ComponentScan。我还添加了 Web 应用程序文件夹,认为它会修复它,但显然这不是问题所在。我还将所有必要的映射添加到控制器 class。这些是我见过的最常见的解决方案,但我仍然遇到同样的错误。
<?xml version="1.0" encoding="UTF-8"?>
4.0.0 org.springframework.boot spring-boot-starter-parent 2.3.5.RELEASE com.example 卡梅拉特 0.0.1-快照 卡梅拉特 Spring Boot
的演示项目<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
Screenshot of Controller class
在您的 Web 控制器上使用 @RestController 并且您必须在 pom.xml
中添加以下依赖项如果可能,请分享您的网络控制器和pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
您遇到此错误是因为 spring 引导没有默认网页 Screenshot with the error
要修复它,您只需在 sr/main/resources/statics 目录
中添加一个简单的 html 文件 (index.html)Screenshot of the config to do
那么你将拥有:
Screenshot after the fix