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 org.shaigor.rest.retro.client.config.ClientWebMvcConfigurerAdapter.java

/**
 * Provides web mvc configuration for the OAuth 2.0 redirect
 * @author Irena Shaigorodsky
 */
@Configuration
@EnableWebMvc

From source file de.pksoftware.springstrap.core.config.WebMvcConfigBase.java

@Configuration
public abstract class WebMvcConfigBase extends WebMvcConfigurerAdapter {

    protected static final Logger logger = LoggerFactory.getLogger(WebMvcConfigBase.class);

    @Autowired(required = false)

From source file org.bremersee.common.spring.autoconfigure.WebMvcConfiguration.java

/**
 * @author Christian Bremer
 */
@Configuration
@ConditionalOnClass(name = { "org.springframework.http.converter.xml.MarshallingHttpMessageConverter" })
@EnableConfigurationProperties(WebMvcProperties.class)

From source file ua.com.codefire.springbootexample.Application.java

/**
 *
 * @author CodeFireUA <edu@codefire.com.ua>
 */
@EnableJpaRepositories(basePackages = "ua.com.codefire.springbootexample.db.repo")
@ComponentScan

From source file com.huffingtonpost.chronos.servlet.TestConfig.java

/**
 * Docs here: http://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html#mvc-config-customize
 * And here: http://www.robinhowlett.com/blog/2013/02/13/spring-app-migration-from-xml-to-java-based-config/
 */
@ComponentScan(basePackageClasses = { ChronosController.class, OtherController.class })
@EnableSwagger2

From source file magoffin.matt.sobriquet.web.config.MvcConfig.java

/**
 * MVC configuration.
 * 
 * @author matt
 * @version 1.0
 */

From source file org.fede.calculator.web.MvcConfig.java

/**
 *
 * @author Federico Tello Gentile <federicotg@gmail.com>
 */
@EnableWebMvc
@Configuration

From source file org.consultjr.mvc.core.config.ApplicationConfig.java

/**
 *
 * @author rgcs
 */
@Configuration //Marks this class as configuration
@EnableTransactionManagement

From source file org.dizitart.no2.datagate.NitriteDataGate.java

/**
 * Nitrite Data Gate Server application.
 *
 * @author Anindya Chatterjee."
 * @since 1.0
 */