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

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

Introduction

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

Usage

From source file com.evergrande.springboot.conf.WebMvcConfig.java

/**
 * @author liuzh_3nofxnp
 * @since 2015-12-19 16:16
 */
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {

From source file ca.tklab.config.WebMvcConfig.java

/**
 * Spring MVC Configuration.
 * 
 * @author Craig Walls
 */
@Configuration

From source file nl.pinniq.web.config.WebMvcConfiguration.java

@Configuration
@EnableWebMvc
@EnableAsync
@EnableScheduling
@ComponentScan(basePackages = { "nl.pinniq.web.controller", "nl.pinniq.web.service",
        "nl.pinniq.web.config.websocket" })

From source file net.rgielen.actionframeworks.springmvc.ApplicationConfig.java

/**
 * @author Rene Gielen
 */
@Configuration
@ComponentScan(basePackageClasses = { ApplicationConfig.class, ActorService.class })
@EnableWebMvc

From source file org.ng200.openolympus.MvcConfig.java

@Configuration
@EnableWebMvc
@Import({ ThymeleafConfig.class })
@PropertySource("classpath:spring.properties")
public class MvcConfig extends WebMvcConfigurerAdapter {

From source file zipkin.autoconfigure.ui.ZipkinUiAutoConfiguration.java

/**
 * Zipkin-UI is a single-page application that reads configuration from /config.json.
 *
 * <p>When looking at a trace, the browser is sent to the path "/traces/{id}". For the single-page
 * app to serve that route, the server needs to forward the request to "/index.html". The same
 * forwarding applies to "/dependencies" and any other routes the UI controls.

From source file com.library.bookarticlelibrary.WebConfig.java

@Configuration
@EnableWebMvc
@EnableTransactionManagement
@ComponentScan(basePackages = "com.library.bookarticlelibrary")
public class WebConfig extends WebMvcConfigurerAdapter {

From source file com.clearprecision.microservices.reference.jetty.GreetingApplication.java

@Configuration
@EnableAutoConfiguration
@EnableSwagger2
@ComponentScan
public class GreetingApplication extends WebMvcConfigurerAdapter {

From source file com.clearprecision.microservices.reference.jetty.BirthdayApplication.java

@Configuration
@EnableAutoConfiguration
@EnableSwagger2
@ComponentScan
public class BirthdayApplication extends WebMvcConfigurerAdapter {

From source file com.gantzgulch.sharing.configurationmvc.MvcAppConfig.java

@Configuration
@ComponentScan(basePackages = "com.gantzgulch.sharing.controller", excludeFilters = @ComponentScan.Filter(Configuration.class))
@EnableWebMvc
public class MvcAppConfig extends WebMvcConfigurerAdapter {

    private static final Log LOG = LogFactory.getLog(MvcAppConfig.class);