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 io.pivotal.cla.config.WebMvcConfig.java

/**
 * @author Rob Winch
 *
 */
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {

From source file com.aerolinea.config.WebConfig.java

@Configuration
@EnableWebMvc
@ComponentScan("com.aerolinea")
public class WebConfig extends WebMvcConfigurerAdapter {

    @Bean

From source file com.notemyweb.config.WebMvcConfig.java

/**
 * Spring MVC Configuration.
 */
@Configuration
@EnableWebMvc
@ImportResource("classpath:com/notemyweb/web-mvc.xml")

From source file com.springmvc.videoteca.spring.config.Config.java

/**
 *
 * @author more-panta
 */
@Configuration
@ComponentScan(basePackages = { "com.springmvc.videoteca.springtiles.controller",

From source file cn.edu.zjnu.acm.judge.config.JudgeWebMvcConfiguration.java

/**
 *
 * @author zhanhb
 */
@Configuration
public class JudgeWebMvcConfiguration extends WebMvcConfigurerAdapter {

From source file com.handu.open.dubbo.monitor.config.WebConfig.java

/**
 * @author Jinkai.Ma
 */
@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {

From source file ch.icclab.WebConfig.java

@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");

From source file com.lyncode.jtwig.example.spring.WebConfig.java

@EnableWebMvc
@Import({ IndexController.class })
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {

    @Bean

From source file com.mauersu.config.WebConfig.java

/**
 * @author Jinkai.Ma
 */
@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {

From source file com.graphaware.server.foundation.config.NeoMvcConfig.java

/**
 * Spring MVC application config.
 */
@Configuration
@EnableWebMvc
public class NeoMvcConfig extends WebMvcConfigurerAdapter {