15 lines
304 B
Java
15 lines
304 B
Java
package org.baeldung.spring;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration
|
|
@ComponentScan("org.baeldung.persistence")
|
|
public class PersistenceConfig {
|
|
|
|
public PersistenceConfig() {
|
|
super();
|
|
}
|
|
|
|
}
|