gpt4 book ai didi

java - 通过localhost访问spring boot项目时,抛出404 Not found错误

转载 作者:行者123 更新时间:2023-12-02 09:43:32 25 4
gpt4 key购买 nike

我创建了一个简单的 Spring-boot maven 项目,并向该项目添加了 Tomcat v8.5 服务器。 Tomcat 服务器已成功启动,但是在通过以下方式访问应用程序时http://localhost:8080 它会抛出 HTTP Status 404 – Not Found 错误。我已经安装了jre 1.8版本。请参阅 pom.xml 了解更多详细信息。

//FalconApplication.java

package com.qacoder.falcon;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class FalconApplication {
public static void main(String[] args) {
SpringApplication.run(FalconApplication.class, args);
}
}

//TestController.java

package com.qacoder.falcon.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {
@RequestMapping("/")
public String home() {
return "Spring boot is working!";
}

}

最佳答案

尝试点击 http://localhost:8080/ (添加了额外的斜杠),因为您在 @RequestMapping 中添加了 /

关于java - 通过localhost访问spring boot项目时,抛出404 Not found错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56852767/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com