我正在编写具有以下项目结构的第一个springboot Web应用程序:

---src/main/java
           +com.example.myproject
                                +--Application.java
           +com.example.myproject.domain
                                +--Person.java
           +com.example.myproject.web
                                +--GreetingController.java
---src/main/resources
           +static
                 +--css
                 +--js
           +templates
                 +--greeting.html

Aplication.java
package com.example.myproject;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication app = new SpringApplication(Application.class);
        app.setShowBanner(false);
        app.run(args);
    }
}

GreetingController.java
package com.example.myproject.web;

import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;


@RestController
public class GreetingController {

    @RequestMapping("/greeting")
    public String greeting(@RequestParam(value="name", required=false, defaultValue="World") String name, Model model) {
        model.addAttribute("name", name);
        return "greeting";
    }
}

greeting.html

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>Getting Started: Serving Web Content</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
    <p th:text="'Hello, ' + ${name} + '!'" />
</body>
</html>


问题是,当我运行项目时,在Web浏览器上键入以下URL
http://localhost:8080/greeting

结果仅显示此文本:问候,而应显示此文本:您好,世界!

我试图将greeting.html从模板文件夹中移出,但仍然不走运。据我了解,springboot应该自动扫描组件并正确加载资源文件。

请帮助就此问题提供建议。

最佳答案

仅使用@Controller批注,而不使用@RestController批注。它将运行正常。 @RestController包含@Controller@ResponseBody批注。因此,如果您使用@RestController,您将从映射到该方法的方法获得返回响应。

10-07 16:22
查看更多