* [BAEL-16662] Move articles out of spring-core and into spring-di and spring-core-2 * [BAEL-16662] Fixed required config classes * [BAEL-16662] - Removed unused dependencies from spring-core
11 lines
269 B
Java
11 lines
269 B
Java
package com.baeldung.methodinjections;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration
|
|
@ComponentScan(basePackages = "com.baeldung.methodinjections")
|
|
|
|
public class AppConfig {
|
|
}
|