- All Implemented Interfaces:
IEventSink
,IMetadataContext<Object,
,Application> ISessionStore.UnboundListener
- Direct Known Subclasses:
AuthenticatedWebApplication
,MockApplication
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 inherited from class org.apache.wicket.Application
CONFIGURATION
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal void
addResourceReplacement
(CssResourceReference base, ResourceReference replacement) Registers a replacement resource for the given CSS resource.final 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.Returns the registeredAjaxRequestTarget.IListener
objects.Returns the provider forAjaxRequestTarget
objects.getAndRemoveBufferedResponse
(String sessionId, Url url) Retrieves a stored buffered response for a given sessionId and url.final String
Gets the unique key of this application within a given context (like a web application).Gets the configuration mode to use for configuring the app, eitherRuntimeConfigurationType.DEVELOPMENT
orRuntimeConfigurationType.DEPLOYMENT
.Returns theContentSecurityPolicySettings
for this application.final FilterFactoryManager
getInitParameter
(String key) Gets an init parameter of the filter, or null if the parameter does not exist.getMimeType
(String fileName) Returns the mime type for given filename.jakarta.servlet.ServletContext
Gets the servlet context for this application.getSessionAttributePrefix
(WebRequest request, String filterName) Gets the prefix for storing variables in the actual session (typicallyHttpSession
for this application instance.final WicketFilter
boolean
hasBufferedResponse
(String sessionId, Url url) final boolean
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.void
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.protected void
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>
MountedMapperMounts a page class to the given path.mountResource
(String path, ResourceReference reference) Mounts a shared resource to the given path.final AjaxRequestTarget
newAjaxRequestTarget
(Page page) Creates a new ajax request target used to control ajax responsesnewSession
(Request request, Response response) Creates a new session.newWebRequest
(jakarta.servlet.http.HttpServletRequest servletRequest, String filterPath) Create a new WebRequest.protected WebResponse
newWebResponse
(WebRequest webRequest, jakarta.servlet.http.HttpServletResponse httpServletResponse) Creates a WebResponse.protected void
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.setAjaxRequestTargetProvider
(Function<Page, AjaxRequestTarget> ajaxRequestTargetProvider) Sets the provider forAjaxRequestTarget
objects.setConfigurationType
(RuntimeConfigurationType configurationType) set runtime configuration typevoid
setCspSettings
(ContentSecurityPolicySettings cspSettings) Set CSP settings.void
setServletContext
(jakarta.servlet.ServletContext servletContext) Sets servlet context this application runs after.final 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
Unregisters allIRequestMapper
s which would match on a this path.protected void
Gives the Application object a chance to validate if it has been properly initializedMethods 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, setJavaScriptLibrarySettings, setMarkupSettings, setMetaData, setName, setPageManagerProvider, setPageRendererProvider, setPageSettings, setRequestCycleProvider, setRequestCycleSettings, setRequestLoggerSettings, setResourceSettings, setRootRequestMapper, setSecuritySettings, setSessionStoreProvider, setStoreSettings, usesDeploymentConfig, usesDevelopmentConfig
-
Field Details
-
META_INF_RESOURCES
- See Also:
-
-
Constructor Details
-
WebApplication
public WebApplication()Constructor. Useinit()
for any configuration of your application instead of overriding the constructor.
-
-
Method Details
-
get
Covariant override for easy getting the currentWebApplication
without having to cast it. -
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:
-
getInitParameter
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
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
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
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
- Returns:
- The Wicket filter for this application
-
logEventTarget
Description copied from class:Application
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL.- Overrides:
logEventTarget
in classApplication
- See Also:
-
logResponseTarget
Description copied from class:Application
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL.- Overrides:
logResponseTarget
in classApplication
- See Also:
-
mount
Mounts an encoder at the given path.- Parameters:
mapper
- the encoder that will be used for this mount
-
mountPage
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
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
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
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
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(jakarta.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, jakarta.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
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
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:
-
setWicketFilter
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL IT.- Parameters:
wicketFilter
- The wicket filter instance for this application
-
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
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL IT.- Overrides:
internalDestroy
in classApplication
-
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
Description copied from class:Application
Gives the Application object a chance to validate if it has been properly initialized- Overrides:
validateInit
in classApplication
-
setConfigurationType
set runtime configuration type this is a write-once property: once configured it can not be changed later on.- Parameters:
configurationType
-
-
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
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
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
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
- Parameters:
sessionId
-url
-- Returns:
- true if has buffered response
-
getAndRemoveBufferedResponse
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:
-
storeBufferedResponse
Store the buffered response at application level to use it at a later time.- Parameters:
sessionId
-url
-response
-
-
getMimeType
Description copied from class:Application
Returns the mime type for given filename.- Overrides:
getMimeType
in classApplication
- Returns:
- mime type
-
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
Returns the registeredAjaxRequestTarget.IListener
objects.- Returns:
- the registered
AjaxRequestTarget.IListener
objects.
-
hasFilterFactoryManager
- Returns:
- True if at least one filter factory has been added.
-
getFilterFactoryManager
- Returns:
- The filter factory manager
-
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:
-
setCspSettings
Set CSP settings.
-