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.obiba.mica.config.LocaleConfiguration.java

@Configuration
public class LocaleConfiguration extends WebMvcConfigurerAdapter implements EnvironmentAware {

    private RelaxedPropertyResolver propertyResolver;

    @Override

From source file com.kajj.tools.logviewer.config.LogViewerConfig.java

/**
 * Configures Spring MVC.
 *
 * @author Andrew Tytula
 */
@Configuration

From source file com.example.CommonModelConfiguration.java

/**
 * @author Dave Syer
 *
 */
@Configuration
public class CommonModelConfiguration extends WebMvcConfigurerAdapter {

From source file opensnap.config.StaticFilesDevConfig.java

@Configuration
@Profile("default")
class StaticFilesDevConfig extends WebMvcConfigurerAdapter {

    @Value("${client.path:}")
    private String relativePath;

From source file org.openwms.core.configuration.ConfigurationApplicationContextConfiguration.java

/**
 * A ConfigurationApplicationContextConfiguration is the Spring Java Configuration that initializes the application properties as
 * {@link PropertySourcesPlaceholderConfigurer}. Import this configuration to take advantage of the JavaConfig mechanism instead of XML
 * configuration.
 * 
 * @author <a href="mailto:scherrer@openwms.org">Heiko Scherrer</a>

From source file com.vdenotaris.spring.boot.security.saml.web.config.MvcConfig.java

@Configuration
public class MvcConfig extends WebMvcConfigurerAdapter {

    @Autowired
    CurrentUserHandlerMethodArgumentResolver currentUserHandlerMethodArgumentResolver;

From source file com.ibk.ltw.controller.WebConfig.java

/**
 * @author <a href="mailto:cleclerc@cloudbees.com">Cyrille Le Clerc</a>
 */
@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {

From source file localdomain.localhost.web.WebConfig.java

/**
 * @author <a href="mailto:cleclerc@cloudbees.com">Cyrille Le Clerc</a>
 */
@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {

From source file org.appcomponents.platform.configuration.PlatformConfig.java

/**
 * Configuration of App Components Platform.
 * @author Martin Janys
 */
@EnableWebMvc
@Configuration

From source file shiver.me.timbers.security.web.RoutingConfiguration.java

@Configuration
public class RoutingConfiguration extends WebMvcConfigurerAdapter {

    @Autowired
    private UserRepository userRepository;