Versions Compared

Key

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

Name

GWT Plugin

Author

musachy

Homepage

http://code.google.com/p/struts2gwtplugin/

Version

0.1

Compatibility

Struts 2.0.2+

State

Unstable

License

Open Source (ASL2)

Download

http://code.google.com/p/struts2gwtplugin/downloads/list

Overview

This plugin

Excerpt

can be used to call methods on Struts actions using GWT

.

Example

Setup Action

Start by creating an action that contains the method that is going to be called. This method needs to match the signature of the service interface, but you don't need to implement the interface on the action. This method will be different from regular Struts 2 action methods in that it returns any object (that GWT can serialize), instead of a result name. If you want to call regular actions from GWT (not using GWT's RPC) go here

...