Create TestConfig

This commit is contained in:
Juan García Heredero 2016-07-19 12:42:04 +02:00 committed by GitHub
parent a42a9bbc88
commit 170a45a314
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package com.baeldung.circulardependency;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan(basePackages = { "com.baeldung.circulardependency" })
public class TestConfig {
}