|
|
This page provides an overview on how to configure the application. Since
this application is data driven and Spring pluggable the options can be
anywhere from very simple (using standard deployments) to extremely complex
(changing file locations, URL patterns, error handling, integration with
other sites etc.). Both options are briefly discussed below with the basic
configuration being described in detail and the complex configuration simply
being outlined.
Basic Configuration
The basic configuration is based on the standard application deployments
with files remaining in their current directories etc. There are only
four settings that might need to be changed - depending on the desired
features and where/how the other applications are deployed. They are:
Complex Configuration
The complex configuration consists of anything that is possible to do with
a Java application server and a pluggable Spring bean MVC type environment.
Listed below (in very little detail) are some things that might be configured:
-
web.xml
Web application file which contains filter URL mapping and
definitions, servlet URL mapping and definitions, error page handling,
default index/welcome page, app session timeout, app's mime types
returned, etc. See the Servlet
Filters documentation page for a description on each filter that
the app can utilize.
-
Spring bean configuration files
Servlet controller URL mappings,
XML and XSLT file path base locations, XSLT and XML system ID property
settings for the various pages, any customized code controller
configurations, .html path to XML/XSLT transformation mappings,
and more.
-
Java Application Server's server.xml and web.xml (in the case of Tomcat)
Allows setting of ports, contexts, default time outs, and much more
- see the appropriate application server documentation.
|