Class ServletContainerInitializerRegistrationBean<T extends javax.servlet.ServletContainerInitializer>
- java.lang.Object
-
- org.joinfaces.autoconfigure.servlet.initializer.ServletContainerInitializerRegistrationBean<T>
-
- Type Parameters:
T
- Type of the actualServletContainerInitializer
implementation
- All Implemented Interfaces:
org.springframework.boot.web.server.WebServerFactoryCustomizer<org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory>
- Direct Known Subclasses:
MyFacesInitializerRegistrationBean
public class ServletContainerInitializerRegistrationBean<T extends javax.servlet.ServletContainerInitializer> extends Object implements org.springframework.boot.web.server.WebServerFactoryCustomizer<org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory>
RegistrationBean
forServletContainerInitializer
s.This is implemented as
WebServerFactoryCustomizer
so its only applied to embedded servlet-containers. When deployed as war file, the external servlet-container will handle theServletContainerInitializer
.
-
-
Constructor Summary
Constructors Constructor Description ServletContainerInitializerRegistrationBean(Class<T> servletContainerInitializerClass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
customize(org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory factory)
protected Optional<Set<Class<?>>>
findPreparedScanResult(ClassLoader classLoader)
protected Set<Class<?>>
getClasses(ClassLoader classLoader)
Class<T>
getServletContainerInitializerClass()
protected void
handleScanResult(io.github.classgraph.ScanResult scanResult)
boolean
isUsePreparedScanResult()
protected Set<Class<?>>
performClasspathScan()
void
setUsePreparedScanResult(boolean usePreparedScanResult)
-
-
-
Method Detail
-
customize
public void customize(org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory factory)
- Specified by:
customize
in interfaceorg.springframework.boot.web.server.WebServerFactoryCustomizer<T extends javax.servlet.ServletContainerInitializer>
-
getClasses
protected Set<Class<?>> getClasses(ClassLoader classLoader)
-
findPreparedScanResult
protected Optional<Set<Class<?>>> findPreparedScanResult(ClassLoader classLoader)
-
handleScanResult
protected void handleScanResult(io.github.classgraph.ScanResult scanResult)
-
isUsePreparedScanResult
public boolean isUsePreparedScanResult()
-
setUsePreparedScanResult
public void setUsePreparedScanResult(boolean usePreparedScanResult)
-
-