zoukankan      html  css  js  c++  java
  • spring mvc -- HttpMessageConverter、DispatcherServlet、Validator---@RequestBody @respondBody

    When RESTful Web Service is developed using Spring MVC, the application is configured as given below. Among these, implementation is necessary for the portion marked with red frame.
    Application constitution of RESTful Web Service on Spring MVC
    Sr. No.Process layerDescription
    (1)
    Spring MVC
    (Framework)
    Spring MVC receives a request from client and determines the REST API (handler method of Controller) to be called.
    (2)
     
     
    Spring MVC converts the JSON format message specified in request BODY to Resource object by using HttpMessageConverter.
    (3)
     
     
    Spring MVC performs input validation for the value stored in Resource object using Validator.
    (4)
     
     
    Spring MVC calls REST API.
    Here, the Resource that has been converted from JSON and for which input validation is carried out, is delivered to REST API.
    (5)
    REST API
    REST API calls Service method and performs the process for DomainObject such as Entity etc.
    (6)
     
    Service method calls the Repository method and performs CRUD process for the DomainObject such as Entity etc.
    (7)
    Spring MVC
    (Framework)
    Spring MVC converts the Resource object returned from REST API to JSON format message, by using HttpMessageConverter.
    (8)
     
     
    Spring MVC sets JSON format message in response BODY and responds to client.
     http://terasolunaorg.github.io/guideline/5.2.0.RELEASE/en/ArchitectureInDetail/WebServiceDetail/REST.html
  • 相关阅读:
    day12-html(css)
    day-12- 前端 html
    python-day11 pymysql
    day11-mysql 练习题
    python-day11 Mysql 数据类操作
    python-day11 Mysql 数据类型
    python-day11-MYSQL 数据库及数据表
    最简单的checkbox, radio跟文字在一行
    前端压缩
    table td 设置宽高无效的问题
  • 原文地址:https://www.cnblogs.com/feng9exe/p/12120485.html
Copyright © 2011-2022 走看看