3.9.3. 数据模型版本

REST API 可以处理数据模型更改。这个功能在这个场景很有用,比如,有些实体属性被重命名了,但是 REST API 客户端不知道这个改动,并且还是希望这个属性保留原来的名字。

这种情况下,REST API 允许定义实体 JSON 的转换规则。如果客户端应用在发送请求时,在查询参数里带上数据模型的版本,REST API 的 response 或者 request body 中的 JSON 会按照请求中特定的领域模型版本的转换规则进行转换。

JSON 的转换规则必须写配置文件中,这些配置文件要通过 web 或者 portal 模块的 cuba.rest.jsonTransformationConfig 应用程序属性来定义,比如 web-app.properties 文件:

  1. cuba.rest.jsonTransformationConfig = +com/company/myapp/rest-json-transformations.xml

rest-json-transformations.xml 文件需要放在 web 或者 portal 模块(比如 com.company.myapp)。这个文件的内容是遵循 rest-json-transformations.xsd schema 的。文件示例:

  1. <?xml version="1.0"?>
  2. <transformations xmlns="http://schemas.haulmont.com/cuba/rest-json-transformations.xsd">
  3. <transformation modelVersion="1.0" oldEntityName="sales$OldOrder" currentEntityName="sales$NewOrder">
  4. <renameAttribute oldName="oldNumber" currentName="number"/>
  5. <renameAttribute oldName="date" currentName="deliveryDate"/>
  6. <toVersion>
  7. <removeAttribute name="discount"/>
  8. </toVersion>
  9. </transformation>
  10. <transformation modelVersion="1.0" currentEntityName="sales$Contractor">
  11. <renameAttribute oldName="summary" currentName="total"/>
  12. <renameAttribute oldName="familyName" currentName="lastName"/>
  13. <fromVersion>
  14. <removeAttribute name="city"/>
  15. <removeAttribute name="country"/>
  16. </fromVersion>
  17. <toVersion>
  18. <removeAttribute name="phone"/>
  19. </toVersion>
  20. </transformation>
  21. <transformation modelVersion="1.1" currentEntityName="sales$NewOrder">
  22. <renameAttribute oldName="date" currentName="deliveryDate"/>
  23. </transformation>
  24. </transformations>

在配置文件中定义的标准转换器可以进行下列实体 JSON 转换任务:

  • 重命名实体

  • 重命名实体属性

  • 删除实体属性

JSON 转换在下列 REST API 端点(endpoint)生效:

  • /entities - 获取实体列表、获取单个实体、实体创建、实体更新、实体删除

  • /queries - 查询返回的实体 JSON 会被转换

  • /services - JSON 转换会发生在两个地方,service 方法返回的实体,以及作为参数传入 service 方法的实体。

如果对 REST API 的请求使用了 modelVersion URL 参数指定数据模型版本,那么 JSON 转换就会生效。

参考数据模型版本化示例了解如何配置数据模型版本以及怎样在客户端程序使用。