Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
xml
xml
<context-param>
    <param-name>struts.osgi.clearBundleCache</param-name>
    <param-value>false</param-value>
</context-param>

If you are running your application on Glassfish 3 (which already contains Apache Felix) you must specify platform, like below:

Code Block
xml
xml

<context-param>
    <param-name>struts.osgi.platform</param-name>
    <param-value>Glassfish</param-value>
</context-param>

Setting

Description

Default

Possible Values

struts.osgi.clearBundleCache

Delete all installed bundles when the container starts

true

true or false

struts.osgi.runLevel

Run level to start the container

3

>=3

struts.osgi.logLevel

Log level for Apache Felix

1 (Error)

1 = error, 2 = warning, 3 = information, and 4 = debug

...