Package org.springframework.data.rest.core.mapping

Examples of org.springframework.data.rest.core.mapping.RepositoryResourceMappings$PersistentPropertyResourceMapping


    return new UriToEntityConverter(persistentEntities(), domainClassConverter());
  }

  @Bean
  public Module persistentEntityModule() {
    return new PersistentEntityJackson2Module(new RepositoryResourceMappings(config(), repositories()),
        persistentEntities(), config(), uriToEntityConverter());
  }
View Full Code Here


  public ResourceMappings resourceMappings() {

    Repositories repositories = repositories();
    RepositoryRestConfiguration config = config();

    return new RepositoryResourceMappings(config, repositories);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.rest.core.mapping.RepositoryResourceMappings$PersistentPropertyResourceMapping

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.