2019-09-16 11:00:12 +01:00
|
|
|
package com.baeldung.methodinjections;
|
2019-07-11 23:54:29 +01:00
|
|
|
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
|
|
|
|
@Configuration
|
2019-09-16 11:00:12 +01:00
|
|
|
@ComponentScan(basePackages = "com.baeldung.methodinjections")
|
2019-07-11 23:54:29 +01:00
|
|
|
|
2019-09-16 11:00:12 +01:00
|
|
|
public class AppConfig {
|
2019-07-11 23:54:29 +01:00
|
|
|
}
|