10 lines
232 B
Java
10 lines
232 B
Java
package org.baeldung.web;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration
|
|
@ComponentScan({ "org.baeldung.web" })
|
|
public class TestConfig {
|
|
|
|
} |