Versions Compared

Key

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

...

The <s:date/>  tag has been adjusted to support a new Java 8 Date/Time API, which means it uses DateTimeFormatter instead of SimpleDateFormat. Yet there is a slight change in patterns supported by both classes, which means your current formatting patterns can stop working after migrating to Struts 6.x and default format will be used instead. You can find more details in

Jira
serverASF JIRA
serverId5aa69414-a9e9-3523-82ec-879b028fb15b
keyWW-5016
.

Deprecated interfaces

A set of action related interfaces have been marked as deprecated. These interfaces have a new proper versions in another package, please start using the new versions as the depretacted interfaces will be removed with the next major release.

DeprecatedNew version
org.apache.struts2.interceptor.ApplicationAwareorg.apache.struts2.action.ApplicationAware
org.apache.struts2.interceptor.CookiesAwareorg.apache.struts2.action.CookiesAware
org.apache.struts2.interceptor.HttpParametersAwareorg.apache.struts2.action.ParametersAware
org.apache.struts2.interceptor.ParameterAwareorg.apache.struts2.action.ParametersAware
org.apache.struts2.interceptor.PrincipalAwareorg.apache.struts2.action.PrincipalAware
org.apache.struts2.interceptor.RequestAwareorg.apache.struts2.action.ServletRequestAware
org.apache.struts2.interceptor.ServletRequestAwareorg.apache.struts2.action.ServletRequestAware
org.apache.struts2.interceptor.ServletResponseAwareorg.apache.struts2.action.ServletResponseAware
org.apache.struts2.interceptor.SessionAwareorg.apache.struts2.action.SessionAware
org.apache.struts2.util.ServletContextAwareorg.apache.struts2.action.ServletContextAware

Temp/Work directory of ApplicationServer/ServletContainer

...