All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.templates.SecurityWebApplicationInitializer Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version

import javax.servlet.ServletContext;

import org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer;
import org.springframework.web.multipart.support.MultipartFilter;

public class SecurityWebApplicationInitializer extends AbstractSecurityWebApplicationInitializer {

	@Override
	protected void beforeSpringSecurityFilterChain(ServletContext servletContext) {
		insertFilters(servletContext, new MultipartFilter());
	}

} 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy