gpt4 book ai didi

java - 在 Spring 中向客户端发送字段元数据

转载 作者:行者123 更新时间:2023-12-01 21:26:20 26 4
gpt4 key购买 nike

我希望我的客户端能够请求有关 @RequestMapping 的元数据,例如每个字段的 @Size@Length 值。 Spring有办法做到这一点吗?

最佳答案

最接近的可能是 HAL 表单的 Spring HATEOAS 功能可供性。

Spring HATEOAS Affordances

响应生成输出,其中包括有关请求模型的所有元数据以及验证规则和方法。

{
"_embedded": {
"employees": [...]
},
"_links": {
"self": {
"href": "http://localhost:8080/employees"
}
},
"_templates": {
"default": {
"title": null,
"method": "post",
"contentType": "",
"properties":[
{
"name": "firstName",
"required": true
},
{
"name": "id",
"required": true
},
{
"name": "lastName",
"required": true
},
{
"name": "role",
"required": true
}
]
}
}
}

关于java - 在 Spring 中向客户端发送字段元数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58831152/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com