project restructure for cleanup purposes

This commit is contained in:
eugenp
2013-07-26 12:08:21 +03:00
parent e1d9737d9f
commit d6f20b1e7d
25 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
package org.baeldung.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
@EnableWebMvc
@Configuration
@ComponentScan({ "org.baeldung.controller" })
public class MvcConfig {
public MvcConfig() {
super();
}
}