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 com.jelastic.campitos.WebApConfig.java

/**
 *
 * @author campitos
 */
@Configuration
@EnableWebMvc

From source file demo.config.SwaggerConfig.java

/**
 * @author Peter Schneider-Manzell
 */
@Configuration
@EnableSwagger
public class SwaggerConfig extends WebMvcConfigurerAdapter implements ServletContextAware {

From source file org.kamranzafar.xmpp.template.config.MvcConfig.java

/**
 * Created by kamran on 04/08/15.
 */

@Configuration
public class MvcConfig extends WebMvcConfigurerAdapter {

From source file com.node.util.MySwaggerConfig.java

/**
 * @Package com.clt.common
 * @Description: TODO(?????)
 * @author hjx
 * @date 201547 ?1:54:57
 * @version V1.0

From source file opensnap.config.PushStateConfig.java

@Configuration
public class PushStateConfig extends WebMvcConfigurerAdapter {

    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/").setViewName("forward:/index.html");

From source file org.beast.project.template.config.FreemarkerConfig.java

/**
 *
 * @author Emmanuel
 */
@EnableWebMvc
@Configuration

From source file com.art4ul.jcoonsample.server.config.WebMvcConfig.java

/**
 * Created by Artsem Semianenka
 * Website: http://art4ul.com
 * 11/15/14.
 */

From source file com.anjewe.anjewewebwinkel.Config.WebConfig.java

/**
 *
 * @author Anne
 */
@Configuration
@EnableWebMvc

From source file com.salesforce.pixelcaptcha.demo.WebConfig.java

@Configuration
@EnableWebMvc
@ComponentScan
public class WebConfig extends WebMvcConfigurerAdapter {
    @Bean
    public ViewResolver viewResolver() {

From source file fr.patouche.soat.google.GoogleSecureApplication.java

@SpringBootApplication
@EnableOAuth2Sso
public class GoogleSecureApplication extends WebMvcConfigurerAdapter {

    public static void main(String[] args) throws Exception {
        SpringApplication.run(GoogleSecureApplication.class, args);