Class WebApplication
- java.lang.Object
-
- org.apache.wicket.Application
-
- org.apache.wicket.protocol.http.WebApplication
-
- All Implemented Interfaces:
IEventSink
,IMetadataContext<Object,Application>
,ISessionStore.UnboundListener
- Direct Known Subclasses:
AuthenticatedWebApplication
,MockApplication
public abstract class WebApplication extends Application
A web application is a subclass of Application which associates with an instance of WicketServlet to serve pages over the HTTP protocol. This class is intended to be subclassed by framework clients to define a web application.Application settings are given defaults by the WebApplication() constructor and internalInit method, such as error page classes appropriate for HTML. WebApplication subclasses can override these values and/or modify other application settings by overriding the init() method and then by calling getXXXSettings() to retrieve an interface to a mutable Settings object. Do not do this in the constructor itself because the defaults will then override your settings.
If you want to use a filter specific configuration, e.g. using init parameters from the
FilterConfig
object, you should override the init() method. For example:public void init() { String webXMLParameter = getInitParameter("myWebXMLParameter"); URL schedulersConfig = getServletContext().getResource("/WEB-INF/schedulers.xml"); ...
- Author:
- Jonathan Locke, Chris Turner, Johan Compagner, Eelco Hillenius, Juergen Donnerstag
- See Also:
WicketFilter
,ApplicationSettings
,DebugSettings
,ExceptionSettings
,MarkupSettings
,PageSettings
,RequestCycleSettings
,ResourceSettings
,SecuritySettings
,Filter
,FilterConfig
,ServletContext
-
-
Field Summary
Fields Modifier and Type Field Description static String
META_INF_RESOURCES
-
Fields inherited from class org.apache.wicket.Application
CONFIGURATION
-
-
Constructor Summary
Constructors Constructor Description WebApplication()
Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addResourceReplacement(CssResourceReference base, ResourceReference replacement)
Registers a replacement resource for the given CSS resource.void
addResourceReplacement(JavaScriptResourceReference base, ResourceReference replacement)
Registers a replacement resource for the given javascript resource.static WebApplication
get()
Covariant override for easy getting the currentWebApplication
without having to cast it.AjaxRequestTargetListenerCollection
getAjaxRequestTargetListeners()
Returns the registeredAjaxRequestTarget.IListener
objects.Function<Page,AjaxRequestTarget>
getAjaxRequestTargetProvider()
Returns the provider forAjaxRequestTarget
objects.BufferedWebResponse
getAndRemoveBufferedResponse(String sessionId, Url url)
Retrieves a stored buffered response for a given sessionId and url.String
getApplicationKey()
Gets the unique key of this application within a given context (like a web application).RuntimeConfigurationType
getConfigurationType()
Gets the configuration mode to use for configuring the app, eitherRuntimeConfigurationType.DEVELOPMENT
orRuntimeConfigurationType.DEPLOYMENT
.ContentSecurityPolicySettings
getCspSettings()
Returns theContentSecurityPolicySettings
for this application.FilterFactoryManager
getFilterFactoryManager()
String
getInitParameter(String key)
Gets an init parameter of the filter, or null if the parameter does not exist.String
getMimeType(String fileName)
Returns the mime type for given filename.javax.servlet.ServletContext
getServletContext()
Gets the servlet context for this application.String
getSessionAttributePrefix(WebRequest request, String filterName)
Gets the prefix for storing variables in the actual session (typicallyHttpSession
for this application instance.WicketFilter
getWicketFilter()
boolean
hasBufferedResponse(String sessionId, Url url)
boolean
hasFilterFactoryManager()
protected void
init()
Initialize; if you need the wicket servlet/filter for initialization, e.g.void
internalDestroy()
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.protected void
internalInit()
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.void
logEventTarget(IRequestHandler target)
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.void
logResponseTarget(IRequestHandler target)
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.void
mount(IRequestMapper mapper)
Mounts an encoder at the given path.<P extends Page>
PackageMappermountPackage(String path, Class<P> pageClass)
Mounts mounts all bookmarkable pages in a the pageClass's package to the given path.<T extends Page>
MountedMappermountPage(String path, Class<T> pageClass)
Mounts a page class to the given path.ResourceMapper
mountResource(String path, ResourceReference reference)
Mounts a shared resource to the given path.AjaxRequestTarget
newAjaxRequestTarget(Page page)
Creates a new ajax request target used to control ajax responsesprotected ContentSecurityPolicySettings
newCspSettings()
Deprecated.usesetCspSettings(ContentSecurityPolicySettings)
insteadSession
newSession(Request request, Response response)
Creates a new session.WebRequest
newWebRequest(javax.servlet.http.HttpServletRequest servletRequest, String filterPath)
Create a new WebRequest.protected WebResponse
newWebResponse(WebRequest webRequest, javax.servlet.http.HttpServletResponse httpServletResponse)
Creates a WebResponse.protected void
outputDevelopmentModeWarning()
This method prints a warning to stderr that we are starting in development mode.void
renderXmlDecl(WebPage page, boolean insert)
The rules if and when to insert an xml decl in the response are a bit tricky.void
sessionUnbound(String sessionId)
Informs the listener that session with specific id has been unbound.Application
setAjaxRequestTargetProvider(Function<Page,AjaxRequestTarget> ajaxRequestTargetProvider)
Sets the provider forAjaxRequestTarget
objects.Application
setConfigurationType(RuntimeConfigurationType configurationType)
set runtime configuration typevoid
setCspSettings(ContentSecurityPolicySettings cspSettings)
Set CSP settings.void
setServletContext(javax.servlet.ServletContext servletContext)
Sets servlet context this application runs after.void
setWicketFilter(WicketFilter wicketFilter)
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.void
storeBufferedResponse(String sessionId, Url url, BufferedWebResponse response)
Store the buffered response at application level to use it at a later time.void
unmount(String path)
Unregisters allIRequestMapper
s which would match on a this path.protected void
validateInit()
Gives the Application object a chance to validate if it has been properly initialized-
Methods inherited from class org.apache.wicket.Application
checkSettingsAvailable, configure, createRequestCycle, decorateHeaderResponse, exists, fetchCreateAndSetSession, get, getApplicationKeys, getApplicationListeners, getApplicationSettings, getBehaviorInstantiationListeners, getComponentInitializationListeners, getComponentInstantiationListeners, getComponentOnAfterRenderListeners, getComponentOnConfigureListeners, getComponentPostOnBeforeRenderListeners, getComponentPreOnBeforeRenderListeners, getConverterLocator, getDebugSettings, getExceptionMapperProvider, getExceptionSettings, getFrameworkSettings, getHeaderContributorListeners, getHeaderResponseDecorators, getHomePage, getInitializers, getJavaScriptLibrarySettings, getMapperContext, getMarkupSettings, getMetaData, getName, getOnComponentTagListeners, getPageFactory, getPageManagerProvider, getPageRendererProvider, getPageSettings, getRequestCycleListeners, getRequestCycleProvider, getRequestCycleSettings, getRequestLogger, getRequestLoggerSettings, getResourceBundles, getResourceReferenceRegistry, getResourceSettings, getRootRequestMapper, getRootRequestMapperAsCompound, getSecuritySettings, getSessionListeners, getSessionStore, getSessionStoreProvider, getSharedResources, getStoreSettings, initApplication, newConverterLocator, newMapperContext, newPageFactory, newRequestLogger, newResourceBundles, newResourceReferenceRegistry, newSharedResources, onDestroy, onEvent, setApplicationSettings, setDebugSettings, setExceptionMapperProvider, setExceptionSettings, setFrameworkSettings, setHeaderResponseDecorator, setJavaScriptLibrarySettings, setMarkupSettings, setMetaData, setName, setPageManagerProvider, setPageRendererProvider, setPageSettings, setRequestCycleProvider, setRequestCycleSettings, setRequestLoggerSettings, setResourceSettings, setRootRequestMapper, setSecuritySettings, setSessionStoreProvider, setStoreSettings, usesDeploymentConfig, usesDevelopmentConfig
-
-
-
-
Field Detail
-
META_INF_RESOURCES
public static final String META_INF_RESOURCES
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
WebApplication
public WebApplication()
Constructor. Useinit()
for any configuration of your application instead of overriding the constructor.
-
-
Method Detail
-
get
public static WebApplication get()
Covariant override for easy getting the currentWebApplication
without having to cast it.
-
getApplicationKey
public final String getApplicationKey()
Description copied from class:Application
Gets the unique key of this application within a given context (like a web application). NOT INTENDED FOR FRAMEWORK CLIENTS.- Specified by:
getApplicationKey
in classApplication
- Returns:
- The unique key of this application
- See Also:
Application.getApplicationKey()
-
getInitParameter
public String getInitParameter(String key)
Gets an init parameter of the filter, or null if the parameter does not exist.- Parameters:
key
- the key to search for- Returns:
- the value of the filter init parameter
-
setServletContext
public void setServletContext(javax.servlet.ServletContext servletContext)
Sets servlet context this application runs after. This is uaully done from a filter or a servlet responsible for managing this application object, such asWicketFilter
- Parameters:
servletContext
-
-
getServletContext
public javax.servlet.ServletContext getServletContext()
Gets the servlet context for this application. Use this to get references to absolute paths, global web.xml parameters (<context-param>), etc.- Returns:
- The servlet context for this application
-
getSessionAttributePrefix
public String getSessionAttributePrefix(WebRequest request, String filterName)
Gets the prefix for storing variables in the actual session (typicallyHttpSession
for this application instance.- Parameters:
request
- the requestfilterName
- If null, than it defaults to the WicketFilter filter name. However according to the ServletSpec the Filter is not guaranteed to be initialized e.g. when WicketSessionFilter gets initialized. Thus, though you (and WicketSessionFilter) can provide a filter name, you must make sure it is the same as WicketFilter will provide once initialized.- Returns:
- the prefix for storing variables in the actual session
-
getWicketFilter
public final WicketFilter getWicketFilter()
- Returns:
- The Wicket filter for this application
-
logEventTarget
public void logEventTarget(IRequestHandler target)
Description copied from class:Application
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL.- Overrides:
logEventTarget
in classApplication
- See Also:
Application.logEventTarget(org.apache.wicket.request.IRequestHandler)
-
logResponseTarget
public void logResponseTarget(IRequestHandler target)
Description copied from class:Application
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL.- Overrides:
logResponseTarget
in classApplication
- See Also:
Application.logResponseTarget(org.apache.wicket.request.IRequestHandler)
-
mount
public void mount(IRequestMapper mapper)
Mounts an encoder at the given path.- Parameters:
mapper
- the encoder that will be used for this mount
-
mountPage
public <T extends Page> MountedMapper mountPage(String path, Class<T> pageClass)
Mounts a page class to the given path.NOTE: mount path must not start with reserved URL segments! See
IMapperContext
to know which segments are reserved for internal use.- Type Parameters:
T
- type of page- Parameters:
path
- the path to mount the page class onpageClass
- the page class to be mounted
-
mountResource
public ResourceMapper mountResource(String path, ResourceReference reference)
Mounts a shared resource to the given path.NOTE: mount path must not start with reserved URL segments! See
IMapperContext
to know which segments are reserved for internal use.- Parameters:
path
- the path to mount the resource reference onreference
- resource reference to be mounted
-
mountPackage
public <P extends Page> PackageMapper mountPackage(String path, Class<P> pageClass)
Mounts mounts all bookmarkable pages in a the pageClass's package to the given path.NOTE: mount path must not start with reserved URL segments! See
IMapperContext
to know which segments are reserved for internal use.- Type Parameters:
P
- type of page- Parameters:
path
- the path to mount the page class onpageClass
- the page class to be mounted
-
unmount
public void unmount(String path)
Unregisters allIRequestMapper
s which would match on a this path.Useful in OSGi environments where a bundle may want to update the mount point.
- Parameters:
path
- the path to unmount
-
addResourceReplacement
public final void addResourceReplacement(JavaScriptResourceReference base, ResourceReference replacement)
Registers a replacement resource for the given javascript resource. This replacement can be anotherJavaScriptResourceReference
for a packaged resource, but it can also be anUrlResourceReference
to replace the resource by a resource hosted on a CDN. Registering a replacement will cause the resource to replaced by the given resource throughout the application: ifbase
is added,replacement
will be added instead.- Parameters:
base
- The resource to replacereplacement
- The replacement
-
addResourceReplacement
public final void addResourceReplacement(CssResourceReference base, ResourceReference replacement)
Registers a replacement resource for the given CSS resource. This replacement can be anotherCssResourceReference
for a packaged resource, but it can also be anUrlResourceReference
to replace the resource by a resource hosted on a CDN. Registering a replacement will cause the resource to replaced by the given resource throughout the application: ifbase
is added,replacement
will be added instead.- Parameters:
base
- The resource to replacereplacement
- The replacement
-
newWebRequest
public WebRequest newWebRequest(javax.servlet.http.HttpServletRequest servletRequest, String filterPath)
Create a new WebRequest. Subclasses of WebRequest could e.g. decode and obfuscate URL which has been encoded by an appropriate WebResponse.- Parameters:
servletRequest
- the current HTTP Servlet requestfilterPath
- the filter mapping read from web.xml- Returns:
- a WebRequest object
-
newWebResponse
protected WebResponse newWebResponse(WebRequest webRequest, javax.servlet.http.HttpServletResponse httpServletResponse)
Creates a WebResponse. Subclasses of WebRequest could e.g. encode wicket's default URL and hide the details from the user. A appropriate WebRequest must be implemented and configured to decode the encoded URL.- Parameters:
webRequest
- theWebRequest
that will handle the current HTTP Servlet requesthttpServletResponse
- the current HTTP Servlet response- Returns:
- a WebResponse object
-
newSession
public Session newSession(Request request, Response response)
Description copied from class:Application
Creates a new session. Override this method if you want to provide a custom session.- Specified by:
newSession
in classApplication
- Parameters:
request
- The request that will create this session.response
- The response to initialize, for example with cookies. This is important to use cases involving unit testing because those use cases might want to be able to sign a user in automatically when the session is created.- Returns:
- The session
-
sessionUnbound
public void sessionUnbound(String sessionId)
Description copied from interface:ISessionStore.UnboundListener
Informs the listener that session with specific id has been unbound.- Specified by:
sessionUnbound
in interfaceISessionStore.UnboundListener
- Overrides:
sessionUnbound
in classApplication
- See Also:
ISessionStore.UnboundListener.sessionUnbound(java.lang.String)
-
setWicketFilter
public final void setWicketFilter(WicketFilter wicketFilter)
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL IT.- Parameters:
wicketFilter
- The wicket filter instance for this application
-
init
protected void init()
Initialize; if you need the wicket servlet/filter for initialization, e.g. because you want to read an initParameter from web.xml or you want to read a resource from the servlet's context path, you can override this method and provide custom initialization. This method is called right after this application class is constructed, and the wicket servlet/filter is set. Use this method for any application setup instead of the constructor.- Overrides:
init
in classApplication
-
internalDestroy
public void internalDestroy()
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL IT.- Overrides:
internalDestroy
in classApplication
-
internalInit
protected void internalInit()
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL IT. Internal initialization. First determine the deployment mode. First check the system property -Dwicket.configuration. If it does not exist check the servlet init parameter (<init-param><param-name>configuration</param-name>
). If not found check the servlet context init parameter<context-param><param-name6gt;configuration</param-name>
). If the parameter is "development" (which is default), settings appropriate for development are set. If it's "deployment" , deployment settings are used. If development is specified and a "sourceFolder" init parameter is also set, then resources in that folder will be polled for changes.- Overrides:
internalInit
in classApplication
-
validateInit
protected void validateInit()
Description copied from class:Application
Gives the Application object a chance to validate if it has been properly initialized- Overrides:
validateInit
in classApplication
-
setConfigurationType
public Application setConfigurationType(RuntimeConfigurationType configurationType)
set runtime configuration type this is a write-once property: once configured it can not be changed later on.- Parameters:
configurationType
-
-
getConfigurationType
public RuntimeConfigurationType getConfigurationType()
Gets the configuration mode to use for configuring the app, eitherRuntimeConfigurationType.DEVELOPMENT
orRuntimeConfigurationType.DEPLOYMENT
.The configuration type. Must currently be either DEVELOPMENT or DEPLOYMENT. Currently, if the configuration type is DEVELOPMENT, resources are polled for changes, component usage is checked, wicket tags are not stripped from output and a detailed exception page is used. If the type is DEPLOYMENT, component usage is not checked, wicket tags are stripped from output and a non-detailed exception page is used to display errors.
Note that you should not run Wicket in DEVELOPMENT mode on production servers - the various debugging checks and resource polling is inefficient and may leak resources, particularly on webapp redeploy.
To change the deployment mode, add the following to your web.xml, inside your
mapping (or mapping if you're using 1.3.x): <init-param> <param-name>configuration</param-name> <param-value>deployment</param-value> </init-param>
You can alternatively set this as a <context-param> on the whole context.
Another option is to set the "wicket.configuration" system property to either "deployment" or "development". The value is not case-sensitive.
The system property is checked first, allowing you to add a web.xml param for deployment, and a command-line override when you want to run in development mode during development.
You may also override Application.getConfigurationType() to provide your own custom switch, in which case none of the above logic is used.
IMPORTANT NOTE
THIS METHOD IS CALLED OFTEN FROM MANY DIFFERENT POINTS IN CODE, INCLUDING DURING THE RENDER PROCESS, THEREFORE THE IMPLEMENTATION SHOULD BE FAST - PREFERRABLY USING A FAST-TO-RETRIEVE CACHED VALUE- Specified by:
getConfigurationType
in classApplication
- Returns:
- configuration
-
renderXmlDecl
public void renderXmlDecl(WebPage page, boolean insert)
The rules if and when to insert an xml decl in the response are a bit tricky. Hence, we allow the user to replace the default implementation per page and per application.Default implementation: the page mime type must be "application/xhtml+xml" and request HTTP_ACCEPT header must include "application/xhtml+xml" to automatically include the xml decl. Please see Writing JavaScript for XHTML for details.
Please note that xml decls in Wicket's markup are only used for reading the markup. The markup's xml decl will always be removed and never be used to configure the response.
- Parameters:
page
- The page currently being renderedinsert
- If false, than the rules are applied. If true, it'll always be written. In order to never insert it, than subclass renderXmlDecl() with an empty implementation.
-
newAjaxRequestTarget
public final AjaxRequestTarget newAjaxRequestTarget(Page page)
Creates a new ajax request target used to control ajax responses- Parameters:
page
- page on which ajax response is made- Returns:
- non-null ajax request target instance
-
outputDevelopmentModeWarning
protected void outputDevelopmentModeWarning()
This method prints a warning to stderr that we are starting in development mode.If you really need to test Wicket in development mode on a staging server somewhere and are annoying the sysadmin for it with stderr messages, you can override this to make it do something else.
-
hasBufferedResponse
public boolean hasBufferedResponse(String sessionId, Url url)
- Parameters:
sessionId
-url
-- Returns:
- true if has buffered response
-
getAndRemoveBufferedResponse
public BufferedWebResponse getAndRemoveBufferedResponse(String sessionId, Url url)
Retrieves a stored buffered response for a given sessionId and url.- Parameters:
url
- The url used as a key- Returns:
- the stored buffered response.
null
if there is no stored response for the given url - See Also:
RequestCycleSettings.RenderStrategy.REDIRECT_TO_BUFFER
-
storeBufferedResponse
public void storeBufferedResponse(String sessionId, Url url, BufferedWebResponse response)
Store the buffered response at application level to use it at a later time.- Parameters:
sessionId
-url
-response
-
-
getMimeType
public String getMimeType(String fileName)
Description copied from class:Application
Returns the mime type for given filename.- Overrides:
getMimeType
in classApplication
- Returns:
- mime type
-
getAjaxRequestTargetProvider
public Function<Page,AjaxRequestTarget> getAjaxRequestTargetProvider()
Returns the provider forAjaxRequestTarget
objects.- Returns:
- the provider for
AjaxRequestTarget
objects.
-
setAjaxRequestTargetProvider
public Application setAjaxRequestTargetProvider(Function<Page,AjaxRequestTarget> ajaxRequestTargetProvider)
Sets the provider forAjaxRequestTarget
objects.- Parameters:
ajaxRequestTargetProvider
- the new provider
-
getAjaxRequestTargetListeners
public AjaxRequestTargetListenerCollection getAjaxRequestTargetListeners()
Returns the registeredAjaxRequestTarget.IListener
objects.- Returns:
- the registered
AjaxRequestTarget.IListener
objects.
-
hasFilterFactoryManager
public final boolean hasFilterFactoryManager()
- Returns:
- True if at least one filter factory has been added.
-
getFilterFactoryManager
public final FilterFactoryManager getFilterFactoryManager()
- Returns:
- The filter factory manager
-
newCspSettings
protected ContentSecurityPolicySettings newCspSettings()
Deprecated.usesetCspSettings(ContentSecurityPolicySettings)
insteadTODO remove in Wicket 10
-
getCspSettings
public ContentSecurityPolicySettings getCspSettings()
Returns theContentSecurityPolicySettings
for this application. SeeContentSecurityPolicySettings
andCSPHeaderConfiguration
for instructions on configuring the CSP for your specific needs.- Returns:
- The
ContentSecurityPolicySettings
for this application. - See Also:
ContentSecurityPolicySettings
,TODO make final in Wicket 10
-
setCspSettings
public void setCspSettings(ContentSecurityPolicySettings cspSettings)
Set CSP settings.
-
-