gpt4 book ai didi

java - Spring Boot 显示字符串而不是 Angular2 单页应用程序中的 HTML 文件

转载 作者:行者123 更新时间:2023-12-02 18:58:40 26 4
gpt4 key购买 nike

我正在尝试将所有 GET 请求映射到网站的未映射网址,以显示 index.html 文件。

因此,我创建了以下@RestController:

@RequestMapping(method=RequestMethod.GET)
public String redirectToIndex() {
return "index.html";
}

我的index.html位于resources/static/index.html中。我还尝试了以下 Controller :

@RequestMapping(method=RequestMethod.GET)
public String redirectToIndex() {
return "/static/index.html";
}

但是,在这两种情况下,浏览器实际上分别显示字符串 index.html/static/index.html,而不是显示 html 文件。我在这里尝试了很多不同的其他方法来解决类似的问题,但无法解决......请帮助。

编辑:

我的填充@RequestController类:

@RestController
public class FeedbackController {
@Autowired
private FeedbackService feedbackService;

@RequestMapping(method=RequestMethod.POST, value="/feedback")
public Feedback addFeedback(@RequestBody Feedback feedback) {
return feedbackService.addFeedback(feedback);
}

@RequestMapping(method=RequestMethod.GET)
public String redirectToIndex() {
return "index.html";
}

}

我的pom.xml:

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.8.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-data-jpa</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>

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

最佳答案

在您的 Controller 中,更改

@RestController

@Contoller

这将呈现 thymeleaf 页面,而不是呈现字符串作为输出。

关于java - Spring Boot 显示字符串而不是 Angular2 单页应用程序中的 HTML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47322391/

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