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

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

Introduction

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

Usage

From source file com.github.mjeanroy.junit.servers.samples.tomcat.java.configuration.SpringMvcConfiguration.java

@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "com.github.mjeanroy.junit.servers.samples")
public class SpringMvcConfiguration extends WebMvcConfigurationSupport {

    @Bean

From source file com.github.mjeanroy.junit.servers.samples.jetty.webxml.configuration.SpringMvcConfiguration.java

@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "com.github.mjeanroy.junit.servers.samples")
public class SpringMvcConfiguration extends WebMvcConfigurationSupport {

    @Bean

From source file com.github.mjeanroy.junit.servers.samples.tomcat.webxml.configuration.SpringMvcConfiguration.java

@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "com.github.mjeanroy.junit.servers.samples")
public class SpringMvcConfiguration extends WebMvcConfigurationSupport {

    @Bean

From source file com.expedia.seiso.SeisoWebConfig.java

/**
 * Seiso web configuration.
 * 
 * @author Willie Wheeler
 */
@Configuration

From source file be.dnsbelgium.rdap.WebConfig.java

@Configuration
@ComponentScan(basePackages = "be.dnsbelgium")
public class WebConfig extends WebMvcConfigurationSupport {

    private static final Logger logger = LoggerFactory.getLogger(WebConfig.class);

From source file com.demo.config.ServletContextConfig.java

/**
 *
 */
@Configuration
@ComponentScan(basePackageClasses = Application.class, useDefaultFilters = true)
public class ServletContextConfig extends WebMvcConfigurationSupport {

From source file dk.nsi.minlog.ws.config.WebConfig.java

/**
 * Setup of web context and dispatcher.
 * 
 * @author kpi
 *
 */

From source file com.github.mjeanroy.springmvc.mustache.sample.configuration.SpringConfiguration.java

@Configuration
@EnableWebMvc
@EnableMustache
@ComponentScan(basePackageClasses = IndexController.class)
public class SpringConfiguration extends WebMvcConfigurationSupport {

From source file net.eusashead.hateoas.response.impl.PageWebConfig.java

@Configuration
@ComponentScan(basePackageClasses = HalPageResponseBuilderController.class)
public class PageWebConfig extends WebMvcConfigurationSupport {

    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {

From source file se.kth.csc.config.WebMvcConfig.java

@Configuration
@ComponentScan(basePackageClasses = Application.class, includeFilters = @Filter(Controller.class))
class WebMvcConfig extends WebMvcConfigurationSupport {
    private static final Logger log = LoggerFactory.getLogger(WebMvcConfig.class);

    /**