Tuesday, June 30, 2015

`spring.data.rest.base-uri` doesn't work

After Spring Boot 1.3.0.M1, the following property doesn't work:

spring.data.rest.base-uri=/api

You have to use the following property:

spring.data.rest.base-path=/api

This is corresponding to Spring Data REST change.

1 comment: