View Javadoc

1   /**
2    * @author SrinivasJasti
3    * 
4    */
5   package org.srinivas.siteworks.dbrestserver.webconfig;
6   
7   import org.springframework.context.annotation.ComponentScan;
8   import org.springframework.context.annotation.Configuration;
9   import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
10  import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
11  
12  /**
13   * The Class DbServerMvcContextConfiguration.
14   */
15  @Configuration
16  @ComponentScan(basePackages = { "org.srinivas.siteworks.dbrestserver.webconfig" })
17  public class DbServerMvcContextConfiguration extends WebMvcConfigurerAdapter {
18  
19  	/* (non-Javadoc)
20  	 * @see org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter#configureDefaultServletHandling(org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer)
21  	 */
22  	@Override
23  	public void configureDefaultServletHandling(final DefaultServletHandlerConfigurer configurer) {
24  
25  	}
26  
27  }