gpt4 book ai didi

spring-boot - Spring 启动应用程序显示 index.html 的 404

转载 作者:行者123 更新时间:2023-12-04 03:08:08 25 4
gpt4 key购买 nike

我有一个 Spring 启动应用程序和一个位于 src/main/resources/static 中的静态 index.html 文件

我的 Controller 很直接,看起来像这样

@Controller
@Log4j
public class StartController {

@Autowired
OwnerRepository ownerRepository;

@RequestMapping("/")
public String index() {
return "index";


}

}

我唯一的配置是主要的,它只有@SpringBootApplication
当我点击 URL 时,我得到 404,根据我的理解,不需要进一步的配置
顺便说一下,在启动时的日志中,我看到以下内容

URI Template variables for request [/index] are {}



这是我的 POM
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.datasol</groupId>
<artifactId>alquifacil</artifactId>
<version>1.0</version>
<packaging>jar</packaging>

<name>AlquiFacil</name>
<description>spring boot</description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.1.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.6</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>


</project>

最佳答案

在您的 pom.xml 中,我没有看到任何模板引擎,例如 Thymeleaf、Velocity ecc,但您有 spring-boot-starter-web ,所以基本上你其配置的资源文件夹,但你应该把你的文件 index.html 放在 模板文件夹。 静态文件夹用于包含您的 Assets 文件。

如果您在本地工作,请尝试:
localhost:8080/localhost:8080/alquifacil/假设您使用端口 8080 或在 pom.xml 中添加模板引擎依赖项,如 Thymeleaf

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

关于spring-boot - Spring 启动应用程序显示 index.html 的 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34686103/

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