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 cz.cvut.zuul.samples.provider.config.ApiContextConfig.java

/**
 * This configuration is currently used only when the application is
 * initialized via {@link ServletInitializer}, otherwise is ignored.
 */
@Configuration
@EnableWebMvc

From source file io.springagora.store.rest.RestConfig.java

/**
 * Properly configures the REST context provided by the Dispatcher Servlet.
 * 
 * @author Thiago Uriel M. Garcia
 */
@Configuration

From source file org.lecture.integration.tutorial.TutorialIntegrationTestConfig.java

/**
 * Configuration class for org.lecture integration test.
 *
 * @author Rene Richter
 */
@Configuration

From source file com.github.djabry.platform.rest.config.WebConfig.java

/**
 * @author djabry
 */
@Configuration
@EnableWebMvc
@ComponentScan(basePackages = { "com.github.djabry" })

From source file comsat.sample.ui.secure.SampleWebSecureApplication.java

@FiberSecureSpringBootApplication // This will enable fiber-blocking
@Controller
public class SampleWebSecureApplication extends WebMvcConfigurerAdapter {
    @RequestMapping("/")
    public String home(Map<String, Object> model) throws InterruptedException, SuspendExecution {
        Fiber.sleep(10);

From source file com.github.cc007.sciencespinoffsquiz.web.config.Config.java

/**
 *
 * @author Rik Schaaf aka CC007 <http://coolcat007.nl/>
 */
@Configuration
@ComponentScan("com.github.cc007.sciencespinoffsquiz.web")

From source file com.springsource.html5expense.config.WebConfig.java

@Configuration
@Import(ComponentConfig.class)
@PropertySource("/config.properties")
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {
    @Override

From source file com.aspose.showcase.qrcodegen.web.config.WebAppConfig.java

/**
 * 
 * @author <ul><li>Farooq Sheikh (farooq.sheikh@aspose.com)</li>
 */

@Configuration

From source file com.vgorcinschi.concordiafootballmanager.web.WebConfig.java

/**
 *
 * @author vgorcinschi
 */
@Configuration
@EnableWebMvc

From source file org.osiam.configuration.WebApplicationConfig.java

@Configuration
public class WebApplicationConfig extends WebMvcConfigurerAdapter {

    @Value("${osiam.home}")
    private String osiamHome;