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.javaetmoi.core.mvc.demo.config.DemoConfig.java

@Configuration
@EnableWebMvc
@ComponentScan(basePackages = { "com.javaetmoi.core.mvc" })
public class DemoConfig extends WebMvcConfigurerAdapter {

    @Autowired

From source file org.oruko.dictionary.DictionaryApplication.java

/**
 * @author Dadepo Aderemi.
 */
@SpringBootApplication
@EnableCaching
@EnableSwagger2

From source file com.heimuheimu.runningtask.web.config.WebConfig.java

/**
 * Spring MVC?
 *
 * @author heimuheimu
 * @date 2014122
 */

From source file com.alexshabanov.springrestapi.restapitest.config.MockWebMvcConfig.java

/**
 * Holds base Spring MVC configuration for testing purposes.
 * For alternative XML-based configuration take a look on XmlDrivenConfigTest-context.xml in the test/resources folder.
 * <p/>
 * The prospective user only need:
 * <ul>

From source file org.bitcoinrt.atmosphere.config.WebConfig.java

@Configuration
@ComponentScan(basePackages = "org.bitcoinrt.atmosphere")
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {

    @Override

From source file rd.kpath.config.WebMvcConfig.java

/**
 * Spring MVC Configuration.
 * 
 * @author rajith
 */
@Configuration

From source file com.dshue.web.WebConfiguration.java

@Configuration
@ComponentScan(basePackages = "com.dshue")
@EnableWebMvc
public class WebConfiguration extends WebMvcConfigurerAdapter {

    @Autowired

From source file com.mysample.config.WebConfig.java

@Configuration
@EnableWebMvc
@PropertySource({ "classpath:application.properties", "classpath:database.properties" })
@ComponentScan(basePackages = "com.mysample")
public class WebConfig extends WebMvcConfigurerAdapter {

From source file com.todo.backend.config.WebConfiguration.java

@Configuration
public class WebConfiguration extends WebMvcConfigurerAdapter {

    private final Logger log = LoggerFactory.getLogger(WebConfiguration.class);

    @Override

From source file com.zhucode.web.quick.QuickAppConfig.java

/**
 * @author zhu jinxian
 *
 * @date 2016718
 */
@Configuration