Spring 启动 ThymeLeaf 未加载 HTML

Spring Boot ThymeLeaf Not Loading HTML

我有一个 Java 和 Maven 项目,其中我有以下控制器 (src/main/java/com/example/romannumerals/controller/RomanNumeralController):

@RestController
public class RomanNumeralController {
    @GetMapping("/roman-numerals/{number}")
    public String RomanNumeral(@PathVariable int number){
        return RomanNumeralsService.numberToNumeral(number);
    }

    @GetMapping("/roman-numerals")
    public String RomanNumeral() {
        return "roman-numeral";
    }
}

我有些 HTML (src/main/resources/templates/roman-numeral.html) 看起来像这样:

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>From Numbers to Roman Numerals</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
Roman Numerals
</body>
</html>

我希望在控制器上调用没有参数的方法时显示此 HTML。相反,我将字符串“罗马数字”打印到屏幕上。难道我做错了什么?我以为 Thymeleaf 会识别出我想显示具有该名称的 HTML 页面而不是显示的字符串。

用@Controller替换@RestController。 @RestController 将使返回的对象成为 HTTP 响应主体。