furthe example work

This commit is contained in:
eugenp
2014-01-09 18:11:32 +02:00
parent 36d843329e
commit 05cf9b7541
5 changed files with 54 additions and 50 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.web" })
public class WebConfig {
public WebConfig() {
super();
}
}