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 nl.avans.ivh5a1.proftaak.config.ApplicationContext.java

/**
 * @author Petri Kainulainen
 *
 * Dit is een van de configuratiebestanden die vanuit de Application.java class worden
 * aangeroepen om je applicatie te initialiseren.
 *

From source file net.prasenjit.security.login.LoginApplication.java

@SpringBootApplication
public class LoginApplication extends WebMvcConfigurerAdapter implements ServletContextInitializer {
    public static void main(String[] args) {
        SpringApplication.run(LoginApplication.class, args);
    }

From source file com.linecorp.bot.spring.boot.LineBotWebMvcConfigurer.java

@Configuration
public class LineBotWebMvcConfigurer extends WebMvcConfigurerAdapter {
    @Autowired
    private LineBotServerInterceptor lineBotServerInterceptor;
    @Autowired
    private LineBotServerArgumentProcessor lineBotServerArgumentProcessor;

From source file de.chludwig.websec.saml2sp.springconfig.MvcConfig.java

/**
 * Adaption of Spring Boot's default MVC configuration.
 */
@Configuration
public class MvcConfig extends WebMvcConfigurerAdapter {

From source file io.curly.commons.github.GitHubResolverConfigurerAdapter.java

/**
 * @author Joo Pedro Evangelista
 */

public class GitHubResolverConfigurerAdapter extends WebMvcConfigurerAdapter {

From source file ApplicationContextConfig.java

/**
 *this class is responsible for all the application configuration settings and beans
 *represents spring's XML configuration file
 *
 * @author lejin
 */

From source file com.github.carlomicieli.config.WebConfig.java

/**
 * The configuration class for the Spring MVC application.
 * @author Carlo P. Micieli
 */
@Configuration
@EnableWebMvc

From source file endpoints.HalBrowserEndpoint.java

/**
 * @author Dave Syer
 *
 */
@ConfigurationProperties("endpoints.hal")
public class HalBrowserEndpoint extends WebMvcConfigurerAdapter implements MvcEndpoint {

From source file com.infodev.fcgorole.configuration.AppConfig.java

/**
 *
 * @author mansubh
 */
@EnableWebMvc
@Configuration

From source file at.ac.tuwien.infosys.configuration.WebConfiguration.java

@Configuration
@EnableWebMvc
@EnableScheduling
public class WebConfiguration extends WebMvcConfigurerAdapter {

    @Override