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.newtonk.config.WebMvcConfig.java

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

From source file com.boxfish.rpt.conf.WebMvcConfig.java

/**
 * @author tiny
 *
 */
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {

From source file com.carlomicieli.jtrains.config.WebConfig.java

@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {
    @Resource
    private RequestMappingHandlerAdapter requestMappingHandlerAdapter;

    @PostConstruct

From source file ch.thp.proto.spring.time.web.config.SpringMVCRestConfig.java

/**
 * Configures the MVC and the static Resources. Configuration for Spring-MVC contains
 * the 310 Jackson Module (Support for java 8 time api)
 * @author thpeng
 */
@Configuration

From source file com.wanliang.site.config.WebappConfig.java

@Configuration
public class WebappConfig extends WebMvcConfigurerAdapter {

    /**
     * Add JSON MessageConverter to send JSON objects to web clients.
     */

From source file org.ownchan.server.app.config.WebMvcConfig.java

@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        String implementationVersion = ScanBaseMarker.class.getPackage().getImplementationVersion();

From source file com.cfets.annualAssessment.conf.WebMvcConfig.java

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

From source file id.ac.ipb.ilkom.training.ApplicationConfiguration.java

/**
 *
 * @author ifnu.b.fatkhan
 */
@Configuration
@EnableWebMvc

From source file com.nebhale.cyclinglibrary.web.WebConfiguration.java

/**
 * Configuration of web components
 */
@Configuration
@ComponentScan
@EnableWebMvc

From source file com.salesfloors.social.config.WebMvcConfig.java

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