java – 如何在spring-data-rest中阻止relTargetType的json输出?

前端之家收集整理的这篇文章主要介绍了java – 如何在spring-data-rest中阻止relTargetType的json输出?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在创建一个@RepositoryRestResource并将其导出为rest服务,如下所示:

@RepositoryRestResource(collectionResourceRel = "myContent",path = "myContent")
public interface MyContentRepository extends PagingAndSortingRepository502_7@

问题:当我请求内容时,我得到以下摘录:

  "content" : [ {
    "value" : [ ],"rel" : null,"collectionValue" : true,"relTargetType" : "com.domain.MyContentEntity"
  } ],@H_502_7@

问题:如何防止暴露relTargetType包和“真实”域名?

最佳答案
在您的POJO中:

如果您根本不想在JSON中使用relTargetType:

@JsonIgnore
public String getRelTargetType() {
    return relTargetType;
}
@H_502_7@

如果您只想隐藏包裹:

public String getRelTargetType() {
    return relTargetType.split("\\.")[2];
}
@H_502_7@

如果要隐藏包并返回其他域名:

public String getRelTargetType() {
    return "AlteredDomainName";
}
@H_502_7@
原文链接:https://www.f2er.com/spring/432247.html

猜你在找的Spring相关文章