我正在使用 spring boot 尝试构建我自己的迷你网站。
我有一个控制器
package hello;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
@RestController
public class HelloController {
@RequestMapping("/greeting")
public String index() {
return "index";
}
}
Run Code Online (Sandbox Code Playgroud)
和我试图呈现的 html 文件资源/模板/索引,但我只是得到了文本“索引”的呈现。如何返回 html 文件而不是文本?