未加载Springboot模板文件

时间:2015-08-06 04:32:08

标签: java templates spring-boot thymeleaf

我正在编写我的第一个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

结果只显示此文字:问候语,同时显示此文字: Hello,World!

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

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

1 个答案:

答案 0 :(得分:9)

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