1

我正在使用 Spring Boot 和 Spring HATEOAS 构建 REST API。

我有 2 个简单的对象。比方说:

// Model
@Entity
public class Person {
    private String  name;
    private Address address;
    // ... usual methods omitted for brievity
}

@Entity
public class Address {
    private String street;
    private String city;
    // ...
}

// Repository. It exposes directly a REST service
public interface PersonRepository extends PagingAndSortingRepository<Person, Long> {}

// Application entry point
@ComponentScan
@EnableAutoConfiguration
@EnableJpaRepositories
@Import(RepositoryRestMvcConfiguration.class)
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

}

这个简单的项目创建如下输出:

{
    "_links": {
        "self": {
            "href": "http://localhost:8080/persons{?page,size,sort}",
            "templated": true
        }
    },
    "_embedded": {
        "persons": [
            {
                "name": "Some name",
                "_links": {
                    "self": {
                        "href": "http://localhost:8080/persons/1"
                    },
                    "address": {
                        "href": "http://localhost:8080/persons/1/address"
                    }
                }
            }
        ]
    }
}

很好,但我希望应用程序直接在响应中发送地址对象。为了不必查询地址的URL。

就像是:

...
        "persons": [
            {
                "name": "Some name",
                "address": {
                    "street": "Some street name"
                    "city": "Some city name"
                }
                "_links": {
                    "self": {
                        "href": "http://localhost:8080/persons/1"
                    },
                    "address": {
                        "href": "http://localhost:8080/persons/1/address"
                    }
                }
            }
        ]
...

是否有任何配置可以做到这一点?我在 Spring HATEOAS 文档中找不到任何关于它的配置。这是仅使用常规 Spring 控制器时的默认行为。

4

2 回答 2

1

Spring Data REST 文档的最新版本说明了摘录预测。这提供了数据集合的另一种默认视图。

您的用例是它最初设计的确切角度。

于 2015-09-24T02:23:48.103 回答
0

删除AddressRepository接口,对象Address将嵌入到Person类的json中。但是无法通过 ID 获取地址

于 2015-06-23T15:14:08.447 回答