I have a class called RepositoryConfig.java which extends RepositoryRestConfigurerAdapter
. The class has a method
public void configureRepositoryRestConfiguration(RepositoryRestConfiguration conf){
conf.exposeIdsFor(SuperClass.class);
}
Previous versions of Spring would expose the ids in JSON for all classes that extended the superclass. Now after upgrading to the latest Spring Boot 1.3.2 the id is not exposed for the classes that extend the Superclass. Is there a new way to expose the id for every class extending superclass? Or would I have a line of code that exposes the id for every class that extends superclass?