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 org.jasr.currentcy.config.SwaggerConfig.java

/**
 * Swagger configuration for the application. This is a separate site that shows documentation for the controllers that are
 * properly annotated
 *
 */
@Configuration

From source file dk.skogemann.airline.project.WebConfig.java

/**
 *
 * @author Thomas Skogemann
 */
@Configuration
@ComponentScan("dk.skogemann.airline.project")

From source file org.csource.quickstart.web.WebApiConfigurationSupport.java

@EnableWebMvc
@EnableSwagger2
@ComponentScan(basePackages = { "org.csource.quickstart.web.controller" })
@Configuration
public class WebApiConfigurationSupport extends WebMvcConfigurationSupport {

From source file org.hobsoft.symmetry.demo.spring.helloworld.HelloMvcConfig.java

/**
 * Spring MVC configuration for this demo.
 */
@Configuration
@ComponentScan
public class HelloMvcConfig extends WebMvcConfigurationSupport {

From source file org.cloudfoundry.caldecott.server.config.WebApplicationConfiguration.java

/**
 * Configure Spring MVC.
 * 
 * @author Phillip Webb
 */
@Configuration

From source file org.duracloud.account.config.WebConfig.java

/**
 * This class defines and extended version of the MVC Annotation configuration.
 * @author Daniel Bernstein
 *
 */
@Configuration

From source file net.maritimecloud.endorsement.config.WebConfig.java

@Configuration
@EnableWebMvc
@EnableSpringDataWebSupport
public class WebConfig extends WebMvcConfigurationSupport {

    @Override

From source file net.acesinc.util.test.service1.config.MVCConfig.java

/**
 *
 * @author andrewserff
 */
@Configuration
@ComponentScan(basePackages = "net.acesinc")

From source file com.naveed.demo.spring31.config.WebConfig.java

/**
 * Spring MVC Java-based configuration.
 *
 * <p>Extends directly from WebMvcConfigurationSupport in order to plug in
 * sub-classes of Spring MVC infrastructure components like
 * {@code RequestMappingHandlerMapping}, {@code RequestMappingHandlerAdapter},

From source file io.pivotal.springtrader.accounts.config.WebConfig.java

/**
 * Java configuration which bootstraps the web application context. Global error
 * handling is configured via
 * {@code configureHandlerExceptionResolvers(List<HandlerExceptionResolver>
 * exceptionResolvers)} enabling consistent REST exception handling across
 * Controllers.