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.bugkillers.back.swagger.CustomJavaPluginConfig.java

/**
 * ????API
 * Springxml??? @see @EnableWebMvc 
 * <p/>
 * <p> @author 
 *

From source file com.hp.autonomy.frontend.find.core.beanconfiguration.DispatcherServletConfiguration.java

@Component
public class DispatcherServletConfiguration extends WebMvcConfigurerAdapter {
    public static final String AUTHENTICATION_ERROR_PATH = "/authentication-error";
    public static final String CLIENT_AUTHENTICATION_ERROR_PATH = "/client-authentication-error";
    public static final String NOT_FOUND_ERROR_PATH = "/not-found-error";
    public static final String SERVER_ERROR_PATH = "/server-error";

From source file com.anjusuryawanshi.htmlparser.HtmlParseApplication.java

@SpringBootApplication
public class HtmlParseApplication extends WebMvcConfigurerAdapter {

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");

From source file bootstrap.BankingGuideConfig.java

/**
 *
 * @author Xcelsia
 */
@Configuration
@EnableWebMvc

From source file sample.config.mvc.MvcConfig.java

/**
 * @author Rob Winch
 */
@Configuration
@EnableWebMvc
@ComponentScan({ "sample.mvc" })

From source file com.consol.citrus.admin.WebConfig.java

/**
 * @author Christoph Deppisch
 */
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {

From source file com.amuponda.estorehack.client.web.config.EstoreWebConfig.java

/**
 *
 * @author amuponda
 */
@EnableWebMvc
@Configuration

From source file com.mycompany.spring2explore.config.MvcConfig.java

/**
 *
 * @author juang
 */
@EnableWebMvc
@Configuration

From source file com.olegchir.fadeok.config.AppConfig.java

@Configuration
@EnableWebMvc
@ComponentScan(basePackages = { "com.olegchir" })
//@EnableAspectJAutoProxy(proxyTargetClass = true)
public class AppConfig extends WebMvcConfigurerAdapter {
    //    @Bean

From source file cn.cuizuoli.appranking.config.WebMvcConfig.java

/**
 * WebMvc Configuration.
 * @author cuizuoli
 */
@Configuration
@EnableWebMvc