Example usage for org.springframework.data.rest.webmvc.config RepositoryRestMvcConfiguration subclass-usage

List of usage examples for org.springframework.data.rest.webmvc.config RepositoryRestMvcConfiguration subclass-usage

Introduction

In this page you can find the example usage for org.springframework.data.rest.webmvc.config RepositoryRestMvcConfiguration subclass-usage.

Usage

From source file programacaovi.rackmanagement.repositories.RepositoryConfig.java

/**
 *
 * @author u35444
 */
@Configuration
public class RepositoryConfig extends RepositoryRestMvcConfiguration {

From source file sample.config.DataRestConfig.java

@Configuration
public class DataRestConfig extends RepositoryRestMvcConfiguration {
    @Qualifier("mvcValidator")
    @Autowired
    private Validator validator;

From source file com.prodigious.festivities.api.app.RepositoryConfiguration.java

/**
 * Configuration within a Java Class
 * @author helbert
 */
@Configuration
public class RepositoryConfiguration extends RepositoryRestMvcConfiguration {

From source file org.socialsignin.springframework.data.dynamodb.demo.config.DemoRestMvcConfiguration.java

/**
 * Custom RepositoryRestMvcConfiguration which is imported instead of the
 * regular RepositoryRestMvcConfiguration for the following purposes:
 * 
 * 1. To allow us to define how we wish composite ids to be converted to and
 * from urls 2. To specify that we would like to return a JSON body when

From source file com.gondor.config.ApplicationContextConfig.java

/**
 *
 * @author Vipin Kumar
 * @created 22-Jun-2015
 *
 *    Application Context Configuration for Gondor

From source file br.com.valecard.config.MainConfig.java

@Configuration
@EnableJpaRepositories(basePackages = "br.com.valecard.repositories")
@EnableTransactionManagement
@ComponentScan(basePackages = { "br.com.valecard.controllers", "br.com.valecard.services",
        "br.com.valecard.services.security.impl", "br.com.valecard.repositories",
        "br.com.valecard.repositories.events", "br.com.valecard.listeners",

From source file com.hillert.botanic.MainApp.java

/**
 * @author Gunnar  Hillert
 * @author Thomas Darimont
 * @since 1.0
 */
@SpringBootApplication

From source file org.agatom.springatom.boot.init.rest.SARepositoryRestMvcConfiguration.java

/**
 * <small>Class is a part of <b>SpringAtom</b> and was created at 21.03.14</small>
 *
 * @author kornicameister
 * @version 0.0.1
 * @since 0.0.1

From source file org.lightadmin.core.config.context.LightAdminRepositoryRestMvcConfiguration.java

@ComponentScan(basePackages = {
        "org.lightadmin.core.web" }, includeFilters = @ComponentScan.Filter(RepositoryRestController.class), useDefaultFilters = false)
public class LightAdminRepositoryRestMvcConfiguration extends RepositoryRestMvcConfiguration {

    @Autowired
    private ListableBeanFactory beanFactory;