java-tutorials/jee-7-security/src/main/java/com/baeldung/springsecurity/SecurityWebApplicationInitializer.java
Dhawal Kapil 506a973c82 BAEL-9148 Fix Java EE Annotations Project
- Added new jee-7-security module that contains only security related code previously part of jee-7 module
- Added new jee-7-security in parent pom.xml
2018-10-10 20:14:21 +05:30

11 lines
330 B
Java

package com.baeldung.springsecurity;
import org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer;
public class SecurityWebApplicationInitializer extends AbstractSecurityWebApplicationInitializer {
public SecurityWebApplicationInitializer() {
super(SpringSecurityConfig.class);
}
}