List of usage examples for org.springframework.web.servlet.config.annotation WebMvcConfigurerAdapter subclass-usage
From source file com.nerdwin15.demo.helloworld.config.WebConfig.java
/**
* Provides the web-based configuration
*
* @author Michael Irwin
*/
@EnableWebMvc
From source file com.mysample.sbmvcsample.config.WebConfig.java
@Configuration @EnableWebMvc @ComponentScan(basePackages = "com.mysample.sbmvcsample") @PropertySource("classpath:application.properties") public class WebConfig extends WebMvcConfigurerAdapter {
From source file org.statefulj.webapp.config.MVCConfig.java
@EnableWebMvc @Configuration @ComponentScan({ "org.statefulj.webapp.*" }) @Import({ AppSecurityConfig.class }) public class MVCConfig extends WebMvcConfigurerAdapter {
From source file com.springsource.oauthservice.config.WebConfig.java
@Configuration @EnableWebMvc public class WebConfig extends WebMvcConfigurerAdapter { @Bean(initMethod = "go") public Bootstrap bootstrap() {
From source file org.statefulj.demo.ddd.config.MVCConfig.java
@EnableWebMvc @Configuration @ComponentScan({ "org.statefulj.webapp.*", "org.statefulj.demo.ddd.*" }) @Import({ AppSecurityConfig.class }) public class MVCConfig extends WebMvcConfigurerAdapter {
From source file com.mysample.sbthymeleaflayout.config.WebConfig.java
@Configuration @EnableWebMvc @ComponentScan(basePackages = "com.mysample.sbthymeleaflayout") @PropertySource("classpath:application.properties") public class WebConfig extends WebMvcConfigurerAdapter {
From source file org.watterssoft.WebConfig.java
/** * @author johnwatters Apr 27, 2014 12:00:19 PM */ @EnableWebMvc @ComponentScan(basePackages = { "org.watterssoft.appsupport" }) @Configuration
From source file com.juliuskrah.multipart.SpringConfig.java
@Configuration @EnableWebMvc @ComponentScan public class SpringConfig extends WebMvcConfigurerAdapter { @Inject
From source file sample.WebConfig.java
/**
*
* @author Rob Winch
*
*/
@EnableWebMvc
From source file org.drugis.trialverse.config.WebMvcConfig.java
@Configuration @EnableWebMvc public class WebMvcConfig extends WebMvcConfigurerAdapter { @Bean public ViewResolver viewResolver() { UrlBasedViewResolver viewResolver = new InternalResourceViewResolver();