Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

JSP support in WebWork is very easy: by default The default configuration (struts-default.xml) configures the Dispatcher Result as the default result (see Result Types). This means any , which works well with JavaServer Pages. Any JSP 1.2+ container can work with WebWork Struts 2 JSP tags immediately.

Getting Started

Because JSP support occurs through the Dispatcher Result, which is the default result type, you don't need to specify the type attribute when configuration configuring struts.xml:

Code Block
xml
xml
<action name="test" class="com.acme.TestAction">
    <result name="success">test-success.jsp</result>
</action>

...

Code Block
xml
xml
<%@ taglib prefix="s" uri="/struts-tags" %>

<html>
<head>
    <title>Hello</title>
</head>
<body>

Hello, <s:property value="name"/>

</body>
</html>

...

The following are ways to obtained obtain Application scope attributes, Session scope attributes, Request scope attributes, Request parameters and framework Context scope parameters:-

...

See the JSP Tags documentation for information on how to use the generic Struts Tags provided by the framework.

...