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
  • 相关阅读:
    第3章 Python的数据结构、函数和文件
    字符与编码
    第2章 IPython和Jupyter
    第1章 准备工作
    (转)详解Python的装饰器
    (转)Python中的split()函数
    5.5 用户定义的可调用类型
    2.6 序列的增量赋值
    Zookeeper简析
    Dubbo-服务引入源码分析
  • 原文地址:https://www.cnblogs.com/feng9exe/p/12120485.html
Copyright © 2011-2022 走看看