Files
spring-boot-rest/spring-boot-modules/spring-boot-annotations/src/test/java/com.baeldung.annotations/service/config/InterfacesAnnotatedTestConfiguration.java
Yavuz Tas 8c25833fd5 BAEL-3828 Where Should @Service Annotation Be Kept? (#10430)
* BAEL-3828 add code samples and tests for the article

* BAEL-3828 fix maven test folder structure and test executions

* BAEL-3828 fix indentation in continuation lines
2021-01-26 09:10:30 -06:00

11 lines
312 B
Java

package com.baeldung.annotations.service.config;
import org.springframework.boot.test.context.TestConfiguration;
import org.springframework.context.annotation.ComponentScan;
@TestConfiguration
@ComponentScan("com.baeldung.annotations.service.interfaces")
public class InterfacesAnnotatedTestConfiguration {
}