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.ethercamp.harmony.config.ApplicationConfig.java

/**
 * Created by Stan Reshetnyk on 18.07.16.
 */
@Configuration
@ComponentScan("com.ethercamp")
public class ApplicationConfig extends WebMvcConfigurerAdapter {

From source file org.pavlov.springmvcjavaconfig.config.WebConfig.java

/**
 *
 * @author pavlov
 */
@Configuration
@EnableWebMvc

From source file com.init.MvcConfiguration.java

/**
 *
 * @author guus_portegies
 */
@Configuration
@ComponentScan(basePackages = "com")

From source file com.github.lynxdb.server.api.http.WebAppConfig.java

/**
 *
 * @author honorem
 */
@Configuration
public class WebAppConfig extends WebMvcConfigurerAdapter {

From source file com.kdubb.socialshowcaseboot.config.WebMvcConfig.java

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

From source file com.github.badoualy.badoualyve.BadOuAlyveApplication.java

@SpringBootApplication
@RestController
public class BadOuAlyveApplication extends WebMvcConfigurerAdapter {

    private static String DB_PATH = System.getProperty("java.io.tmpdir") + "badoualyve_"
            + System.currentTimeMillis() + ".json";

From source file com.github.jens_meiss.blog.server.configuration.BlogWebSecurityAdapter.java

/**
 * The Class BlogWebSecurityAdapter.
 */
@Configuration
@EnableWebMvcSecurity
public class BlogWebSecurityAdapter extends WebMvcConfigurerAdapter {

From source file com.pw.ism.TestMvcConfiguration.java

/**
 *
 * @author NRS
 */
@WebAppConfiguration
//@PropertySource({"classpath:application.properties"})

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

/**
 *
 * @author biendltb
 * @email biendltb@gmail.com
 * @version 1.0
 */

From source file org.aksw.gerbil.web.config.DatabaseConfig.java

@Configuration
@ComponentScan(basePackages = "org.aksw.gerbil.web")
public class DatabaseConfig extends WebMvcConfigurerAdapter {

    private static final transient Logger LOGGER = LoggerFactory.getLogger(DatabaseConfig.class);