【发布时间】:2017-08-23 13:40:44
【问题描述】:
这很奇怪,但是当我在 Spring Boot 中有以下 Spring Data Rest 在配置中
spring:
data:
rest:
default-media-type: application/json
detection-strategy: annotated
和类
@RepositoryRestResource
public interface RestRestaurantRepo extends CrudRepository<Restaurant, Long> {
}
它没有暴露。但是,当我将其更改为任何配置时,我会忽略配置道具,例如
spring:
data:
rest:
detection-strategy: annotated
或:
spring:
data:
rest:
default-media-type: application/json
它有效。对此有什么办法?
【问题讨论】:
标签: java spring spring-boot spring-data spring-data-rest