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.meruvian.yama.webapi.config.DevWebConfig.java

/**
 * @author Dian Aditya
 *
 */
@Configuration
@Profile(Application.PROFILE_WEB)

From source file com.arborsoft.platform.api.config.ApiConfiguration.java

@Configuration
@ComponentScan(basePackages = { "com.arborsoft.platform.api" })
@Import(CoreNeo4jConfiguration.class)
@EnableSwagger2
@EnableWebMvc
public class ApiConfiguration extends WebMvcConfigurerAdapter {

From source file com.wms.multitenant.config.AppConfig.java

@Configuration
@EnableWebMvc
@ComponentScan(basePackages = { "com.wms.multitenant" })
public class AppConfig extends WebMvcConfigurerAdapter {

    @Autowired

From source file io.getlime.security.powerauth.app.server.WebApplicationConfig.java

/**
 * PowerAuth 2.0 Server web application configuration. The main purpose of this class
 * at the moment is to assure proper handling of application exceptions (correct
 * order).
 *
 * @author Petr Dvorak

From source file net.kaczmarzyk.spring.data.jpa.Application.java

/**
 * @author Tomasz Kaczmarzyk
 */
@Configuration
@ComponentScan(basePackages = "net.kaczmarzyk")
@EnableJpaRepositories

From source file application.SampleMethodSecurityApplication.java

@EnableJpaRepositories
@SpringBootApplication
@EnableGlobalMethodSecurity(securedEnabled = true)
public class SampleMethodSecurityApplication extends WebMvcConfigurerAdapter {

    @Override

From source file com.lyncode.dataencoder.controller.spring.WebConfig.java

@Configuration
@EnableWebMvc
@Import(PersistenceConfig.class)
public class WebConfig extends WebMvcConfigurerAdapter {
    @Bean
    public ViewResolver viewResolver() {

From source file cn.edu.zjnu.acm.judge.config.LocaleConfiguration.java

/**
 *
 * @author zhanhb
 */
@Configuration
public class LocaleConfiguration extends WebMvcConfigurerAdapter {

From source file com.project.framework.configuration.WebMvcConfig.java

/**
 *
 * @author Rafael Benavides
 */
@EnableWebMvc
@Configuration

From source file com.kazuki43zoo.jpetstore.config.WebMvcConfig.java

/**
 * @author Kazuki Shimizu
 */
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {