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 jquery.spring.SpringConfig.java

/**
 *
 * @author ETY
 */
@Configuration
//@SpringBootApplication

From source file org.bitcoinrt.web.config.WebConfig.java

@Configuration
@ComponentScan(basePackages = "org.bitcoinrt.web")
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {

    @Override

From source file service.social.config.WebMvcConfig.java

/**
 * Spring MVC Configuration.
 * @author Keith Donald
 */
@Configuration
@EnableWebMvc

From source file com.kdubb.social.config.WebMvcConfig.java

/**
 * Spring MVC Configuration.
 * @author Keith Donald
 */
@Configuration
@EnableWebMvc

From source file jungleSpeed.spring.SpringConfig.java

/**
 *
 * @author ETY
 */
@Configuration
//@SpringBootApplication

From source file de.codecentric.batch.configuration.WebConfig.java

/**
 * This configuration adds the controllers for the two endpoints, and it adds a Jackson MixIn to the
 * message converter to avoid a stack overflow through circular references in the JobExecution /
 * StepExecution.
 *
 * @author Tobias Flohre

From source file com.mycompany.geocoordinate.config.AppConfiguration.java

/**
 *
 * @author andrey
 */
@Configuration
@EnableWebMvc

From source file org.zlogic.vogon.web.WebConfig.java

/**
 * Spring boot annotations configuration
 *
 * @author Dmitry Zolotukhin [zlogic@gmail.com]
 */
@Configuration

From source file com.otz.transport.consumer.config.TransportConfiguration.java

/**
 * Copyright 2016 opentoolzone.com - Kafka Transport
 * <p>
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file org.neo4j.cineasts.Application.java

@Configuration
@EnableNeo4jRepositories("org.neo4j.cineasts.repository")
@EnableTransactionManagement
@ComponentScan("org.neo4j.cineasts")
public class Application extends WebMvcConfigurerAdapter {