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 lockc.springboot.examples.swagger.WebAppContext.java

@EnableWebMvc
@EnableSwagger
@Configuration
public class WebAppContext extends WebMvcConfigurerAdapter {

    private SpringSwaggerConfig springSwaggerConfig;

From source file com.stitchgalaxy.sg_rest_api.configuration.WebConfig.java

/**
 *
 * @author tarasev
 */
//http://www.mkyong.com/spring-security/spring-security-hello-world-annotation-example/
//http://www.luckyryan.com/2013/02/07/migrate-spring-mvc-servlet-xml-to-java-config/

From source file org.beast.project.template.config.WebMvcConfig.java

/**
 *
 * @author Emmanuel
 */
@EnableWebMvc
@Configuration

From source file org.lucjross.uspresidential.SwaggerConfig.java

/**
 * Created by lucas on 12/31/2014.
 */
@Configuration
@EnableSwagger
public class SwaggerConfig extends WebMvcConfigurerAdapter {

From source file com.em.adm.neo4j.SwaggerConfig.java

/**
 * Created by sudhir on 8/9/15.
 */
@Configuration
@EnableSwagger
public class SwaggerConfig extends WebMvcConfigurerAdapter {

From source file org.efoe.poc.springws.provider.xmlbeans.config.WebMvcConfig.java

/**
 *
 * @author Emmanuel
 */
@EnableWebMvc
@Configuration

From source file com.hypersocket.json.WebMvcConfiguration.java

@Component
public class WebMvcConfiguration extends WebMvcConfigurerAdapter {

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(new ControllerInterceptor());

From source file com.xinferin.config.MvcConfiguration.java

@Configuration
@ComponentScan(basePackages = "net.codejava.spring")
@EnableWebMvc
public class MvcConfiguration extends WebMvcConfigurerAdapter {

    @Bean

From source file com.tribuo.backend.configuration.SecurityConfig.java

/**
 *
 * @author Camilo
 */
//@Configuration
//@ComponentScan(basePackages = "org.pac4j.springframework.web")

From source file com.bitran.config.Config.java

/**
 *
 * @author Willian
 */
@Configuration
@EnableWebMvc