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.epam.reportportal.extension.bugtracking.BugTrackingApp.java

/**
 * Base Entry Point for BugTracking Extensions
 *
 * @author Andrei Varabyeu
 */
@SpringBootApplication(exclude = { SecurityAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class })

From source file com.mycompany.testeproject.App.java

/**
 *
 * @author felicianoe
 */
@Configuration
@ComponentScan

From source file com.github.springfox.loader.SpringfoxLoaderConfig.java

@EnableConfigurationProperties
@Configuration
@ComponentScan(basePackageClasses = SpringfoxLoaderConfig.class)
public class SpringfoxLoaderConfig extends WebMvcConfigurerAdapter
        implements ApplicationContextAware, EmbeddedValueResolverAware {

From source file me.j360.trace.autoconfiguration.ui.ZipkinUiAutoConfiguration.java

/**
 * Zipkin-UI is a single-page application that reads configuration from /config.json.
 *
 * <p>When looking at a trace, the browser is sent to the path "/traces/{id}". For the single-page
 * app to serve that route, the server needs to forward the request to "/index.html". The same
 * forwarding applies to "/dependencies" and any other routes the UI controls.

From source file com.pw.ism.DevMvcConfiguration.java

/**
 *
 * @author NRS
 */
@Profile("dev")
@Configuration

From source file com.tradeshift.conf.WebMvcConfig.java

/**
 * @author liuzh_3nofxnp
 * @since 2015-12-19 16:16
 */
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {

From source file mx.edu.um.eventosum.config.WebConfig.java

/**
 *
 * @author ADMIN
 */
@Configuration
@EnableWebMvc

From source file org.selfiepro.client.config.WebMvcConfig.java

/**
 * Spring MVC Configuration.
 * @author Keith Donald
 */
@Configuration
@EnableWebMvc

From source file org.shaigor.rest.retro.service.security.config.OAuth2WebMvcConfigurerAdapter.java

/**
 * Provides web mvc configuration for the OAuth 2.0 redirect
 * @author Irena Shaigorodsky
 */
@Configuration
@EnableWebMvc

From source file org.ow2.proactive.inmemory_keyvalue_store.Application.java

/**
 * @author ActiveEon Team
 */
@SpringBootApplication
@EnableSwagger2
@EnableAutoConfiguration(exclude = { MultipartAutoConfiguration.class })