java - 从 Spring RestController 服务到 Html

标签 java html spring spring-boot spring-restcontroller

我有一个 MainController,它是一个 RestController,它使用单独的类(CommandInterpreter.java)中的 java 代码按价格顺序获取车辆列表。运行时,“/vehicles-by-price”已经显示了我想要格式化的列表。我想获取返回的列表并将其格式化为表格,但我不确定如何执行此操作。

我目前在“resources/static”中有一个index.html,它显示在主页上。有没有办法为“/vehicles-by-price”页面创建一个 html 文件来显示,该文件将列表传递给它(或我可以在 html 中使用的 js 文件)以在表格中显示? p>

我是 Spring 新手,因此任何代码/必要的文件结构都会很有帮助!

主 Controller :

@RestController
public class MainController {
  //Get CommandInterpreter object
  private CommandInterpreter ci = new CommandInterpreter();
  private List<Vehicle> vehicles;

  MainController () throws Exception {
    //Set up list of vehicles from JSON
    vehicles = ci.parseJsonVehicles();
  }

  @RequestMapping("/vehicles-by-price")
  public List<Vehicle> getVehiclesByPrice() {
    vehicles = ci.getVehiclesByPrice(vehicles);
    return vehicles;
  }
}

最佳答案

@RestController 将以 Rest 样式(默认 json)返回响应。因此,如果您正在构建单页应用程序并使用 ajax 调用来调用 Rest Web 服务,那么 RestController 将很有用。

如果您想显示产品的完整新页面,那么您可以使用 @Controller,它将使用 viewResolver 将您重定向到适当的 View ,并且您可以显示存储在 ModelAndView 中的数据。

对于使用 html,您可以使用 Thymeleaf,它使用 html 文件,但有更多选项来渲染复杂对象并支持 El。

示例代码:

@Controller
public class MainController {
    //Get CommandInterpreter object
    private CommandInterpreter ci = new CommandInterpreter();
    private List <Vehicle> vehicles;

    MainController() throws Exception {
        //Set up list of vehicles from JSON
        vehicles = ci.parseJsonVehicles();
    }

    @RequestMapping("/vehicles-by-price")
    public ModelAndView getVehiclesByPrice() {
        vehicles = ci.getVehiclesByPrice(vehicles);

        ModelAndView mv = new ModelAndView();
        mv.add("vehicles", vehicles);
        mv.setViewName("vehiclesByPrice");
        return mv;
    }
}

示例 resources/static/vehiclesByPrice.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>
        <table>
            <tr th:each="vehicle : ${vehicles}">
                <td th:text="${vehicle}">1</td>
            </tr>
        </table>
    </body>
</html>

关于java - 从 Spring RestController 服务到 Html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47072541/

相关文章:

spring - 在 Spring 中何时使用 Qualifier 和 Primary

java - 添加更多线程会提高程序的性能吗

java - 根据文件内容创建对象数组

java - Spring Bean 的正确摆放方法

javascript - 如何使用 jQuery Mobile 动态创建按钮?

java - 我可以将应用程序热部署到 Tomcat 中吗?

java - 如何在 MyBatis 中 foreach 数组

javascript - 更改 window.reload() 上的版本号

php - 来自 PHP 字符串的 JavaScript 数组

java - Spring Boot 无法检测我输入的值