15 lines
321 B
Java
15 lines
321 B
Java
|
package org.baeldung.spring;
|
||
|
|
||
|
import org.springframework.context.annotation.Configuration;
|
||
|
import org.springframework.context.annotation.ImportResource;
|
||
|
|
||
|
@Configuration
|
||
|
@ImportResource({ "classpath:webSecurityConfig.xml" })
|
||
|
public class SecSecurityConfig {
|
||
|
|
||
|
public SecSecurityConfig() {
|
||
|
super();
|
||
|
}
|
||
|
|
||
|
}
|