我正在使用 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 控制器时的默认行为。