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 net.ljcomputing.sr.config.StatusReporterMvcConfiguration.java

/**
 * Status Reporter MVC configuration class.
 * 
 * @author James G. Willmore
 *
 */

From source file edu.chalmers.dat076.moviefinder.config.WebConfig.java

/**
 * Configuration class for the "web" portion of the application.
 */
@Configuration
@EnableWebMvc
@ComponentScan(basePackages = { "edu.chalmers.dat076.moviefinder.controller",

From source file eu.agilejava.mvc.config.ApplicationConfig.java

/**
 *
 * @author Ivar Grimstad (ivar.grimstad@gmail.com)
 */
@Configuration
@ComponentScan("eu.agilejava.mvc")

From source file co.carlosandresjimenez.gotit.backend.Application.java

@Configuration
@ComponentScan
@EnableWebMvc
public class Application extends WebMvcConfigurerAdapter {

    // We do not have the typical main method because we need

From source file io.gumga.security.WebConfigForTest.java

@Configuration
public class WebConfigForTest extends WebMvcConfigurerAdapter implements WebApplicationInitializer {

    @Override
    public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
        configurer.enable();

From source file com.coinblesk.server.config.WebMvcConfiguration.java

@Configuration
@EnableWebMvc
public class WebMvcConfiguration extends WebMvcConfigurerAdapter {

    @Bean
    public RequestMappingHandlerMapping requestMappingHandlerMapping() {

From source file br.com.proj.web.config.WebMvcConfig.java

@Configuration
@ComponentScan(basePackages = { "br.com.proj.web.controllers", "br.com.mvc.projeto.service" })
@EnableJpaRepositories("br.com.proj.repository")
@EnableTransactionManagement
@EnableWebMvc
@PropertySource("classpath:application.properties")

From source file me.jcala.xmarket.server.conf.RestConfig.java

/**
 *??,???
 * restconfig
 */
@Slf4j
@Configuration

From source file com.tcloud.bee.key.server.jetty.config.MvcConfiguration.java

/**
 * The SpringMVC application context.
 * 
 * This is the annotation variation of configuring the SpringMVC application
 * context. An XML configuration is imported so XML based configuration can
 * still be used.

From source file dk.dma.nogoservice.Application.java

/**
 *  Application entry point, and main spring configuration.
 *
 * @author Klaus Groenbaek
 *         Created 10/03/17.
 */