gpt4 book ai didi

java - 无法启动简单的 Spring Boot 项目

转载 作者:行者123 更新时间:2023-12-01 17:59:33 25 4
gpt4 key购买 nike

使用 NetBeans 8.1。

我有这个简单的 java Spring Boot 项目,没有任何 bean 或持久性。同一包中的两个 java 类。

@SpringBootApplication
public class SpringSimpleTestApplication {
public static void main(String[] args) {
SpringApplication.run(SpringSimpleTestApplication.class, args);
}
}
<小时/>
@Controller
public class WebController {
@RequestMapping("/")
public String index(){
return "index";
}
}

以及 src/main/resources->templates 下的“index.html”文件

<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Test</h1>
</body>
</html>

当我运行它时,我没有错误,但是当我转到 http://localhost:8080/ 我有白标错误页面:

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.
Thu Feb 09 01:53:26 CET 2017
There was an unexpected error (type=Not Found, status=404).
No message available

最佳答案

首先,虽然index.html是静态资源,但它属于src/main/resources/static,而不是src/main/resources/templates .

其次,您不需要静态资源的请求映射。他们只是工作。

所以,移动index.html,删除WebController,就可以了。

关于java - 无法启动简单的 Spring Boot 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42126384/

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