Example usage for org.springframework.web.servlet.config.annotation DelegatingWebMvcConfiguration subclass-usage

List of usage examples for org.springframework.web.servlet.config.annotation DelegatingWebMvcConfiguration subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.servlet.config.annotation DelegatingWebMvcConfiguration subclass-usage.

Usage

From source file co.paralleluniverse.springframework.web.servlet.config.annotation.FiberWebMvcConfigurationSupport.java

/**
 * Provides a fiber-dispatching controller method invoker
 * 
 * @author circlespainter
 * 
 * @see EnableWebMvc

From source file com.kixeye.chassis.support.test.eureka.ChassisEurekaTestConfiguration.java

@Configuration
@ComponentScan(basePackageClasses = ChassisEurekaTestConfiguration.class)
public class ChassisEurekaTestConfiguration extends DelegatingWebMvcConfiguration {

    @Bean
    static public PropertyPlaceholderConfigurer archaiusPropertyPlaceholderConfigurer()

From source file com.kixeye.chassis.bootstrap.webapp.TestSpringWebApp.java

/**
 * Spring web app configuration
 *
 * @author dturner@kixeye.com
 */
@App(name = WebAppIntegrationTest.UNIT_TEST_SPRING_APP, configurationClasses = TestSpringWebApp.class, webapp = true)

From source file org.wallride.autoconfigure.WebGuestConfiguration.java

@Configuration
public class WebGuestConfiguration extends DelegatingWebMvcConfiguration {

    @Autowired
    private PageDescribeController pageDescribeController;

From source file com.kixeye.chassis.transport.SpringMvcConfiguration.java

/**
 * Configures Spring MVC.
 *
 * @author ebahtijaragic
 */
@Configuration

From source file es.galvarez.rest.config.SpringConfiguration.java

/**
 * @author Gonzalo Alvarez
 *
 */
@Configuration
@EnableJpaRepositories(basePackages = SpringConfiguration.BASE_PACKAGES)

From source file org.wallride.autoconfigure.WebAdminConfiguration.java

@Configuration
@ComponentScan(basePackageClasses = DashboardController.class)
public class WebAdminConfiguration extends DelegatingWebMvcConfiguration {

    @Autowired
    private MessageCodesResolver messageCodesResolver;