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.smigo.config.ProductionConfiguration.java

@Configuration
@Profile(EnvironmentProfile.PRODUCTION)
@PropertySource({ "classpath:prod.properties" })
public class ProductionConfiguration extends WebMvcConfigurerAdapter {

    private final Logger log = LoggerFactory.getLogger(this.getClass());

From source file org.aksw.simba.tapioca.server.Config.java

/**
 * 
 * @author Michael Röder (roeder@informatik.uni-leipzig.de)
 * 
 */
@Configuration

From source file io.getlime.security.powerauth.app.rest.api.spring.configuration.WebApplicationConfig.java

/**
 * Default implementation of WebMvcConfigurerAdapter, maps PowerAuthRequestFilter instance
 * (that passes HTTP request body to the request as an attribute, so that it's available
 * in the controller) to /pa/signature/validate demo end-point.
 *
 * @author Petr Dvorak

From source file com.social.google.dssm2015.config.WebMvcConfig.java

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

From source file com.boot.pf.config.WebMvcConfig.java

/**
 * Spring MVC Configuration.
 * 
 * @author Craig Walls
 */
@EnableWebMvc

From source file com.cloudfoundry.samples.spring.config.WebMvcConfig.java

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

From source file me.bulat.jivr.webmin.config.WebAppConfig.java

/**
 * @author Alex Bogatikov
 *         Created on 25/08/16.
 */
@Configuration
@EnableWebMvc

From source file sample.config.MvcConfig.java

@Configuration
public class MvcConfig extends WebMvcConfigurerAdapter implements InitializingBean {

    @Autowired
    private Repositories repositories;
    @Autowired

From source file ro.teamnet.hero.config.WebMvcConfig.java

/**
 * Spring MVC Configuration.
 * @author Craig Walls
 */
@Configuration
@EnableWebMvc

From source file demo.SpringBoot1Application.java

@EnableAutoConfiguration(exclude = { ErrorMvcAutoConfiguration.class })
@ComponentScan
@Controller
public class SpringBoot1Application extends WebMvcConfigurerAdapter {

    //    @RequestMapping("/")