java – Spring HATEOAS&HAL:在_embedded中更改数组名称

前端之家收集整理的这篇文章主要介绍了java – Spring HATEOAS&HAL:在_embedded中更改数组名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试使用Spring HATEOAS构建符合HAL的REST API.

在一些摆弄之后,我设法开始工作,大多是预期的.
(样本)输出现在看起来像这样:

{
    "_links": {
        "self": {
            "href": "http://localhost:8080/sybil/configuration/bricks"
        }
    },"_embedded": {
        "brickDomainList": [
            {
                "hostname": "localhost","port": 4223,"_links": {
                    "self": {
                        "href": "http://localhost:8080/sybil/configuration/bricks/localhost"
                    }
                }
            },{
                "hostname": "synerforge001","_links": {
                    "self": {
                        "href": "http://localhost:8080/sybil/configuration/bricks/synerforge001"
                    }
                }
            }
        ]
    }
}

我不喜欢“brickDomainList”数组的名称.理想情况下应该说“砖块”.我该怎么改变它?

这是产生输出的控制器:

@RestController
@RequestMapping("/configuration/bricks")
public class ConfigurationBricksController {

    private BrickRepository brickRepository;
    private GraphDatabaseService graphDatabaseService;

    @Autowired
    public ConfigurationBricksController(BrickRepository brickRepository,GraphDatabaseService graphDatabaseService) {

        this.brickRepository = brickRepository;
        this.graphDatabaseService = graphDatabaseService;
    }

    @ResponseBody
    @RequestMapping(method = RequestMethod.GET,produces = "application/hal+json")
    public Resources

是否有一些注释或我可以添加内容来更改数组的名称

如果您想/需要查看BrickResource类或Repositories或其他内容,请查看此处:https://github.com/ttheuer/sybil/tree/mvctest/src/main/java/org/synyx/sybil

BrickResource位于api / resources /中,存储库位于database /中,而BrickDomain位于domain /中.

谢谢!

最佳答案
只需使用Evo Inflector.如果您有Maven项目,则添加依赖项

或者,您可以将@Relation(collectionRelation =“bricks”)添加到BrickDomain类

@Relation(collectionRelation = "bricks")
public class BrickDomain { … }
原文链接:https://www.f2er.com/spring/431826.html

猜你在找的Spring相关文章