Difference between revisions of "Struts"
From Jtkwiki
Jump to navigationJump to search (New page: == Official Struts Documentation == * http://struts.apache.org/ * [http://struts.apache.org/2.1.6/docs/crud-demo-i.html CRUD Demo I] shows approaches useful for creating, updating and del...) |
|||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
* http://struts.apache.org/ | * http://struts.apache.org/ | ||
− | * [http://struts.apache.org/2.1.6/docs/crud-demo-i.html CRUD Demo I] shows approaches useful for creating, updating and deleting persisted stuff. | + | * [http://struts.apache.org/2.1.6/docs/crud-demo-i.html CRUD Demo I] shows approaches useful for creating, retrieving, updating and deleting persisted stuff. |
== Miscellaneous Notes == | == Miscellaneous Notes == | ||
Line 8: | Line 8: | ||
=== Open Questions === | === Open Questions === | ||
− | * the [http://struts.apache.org/2.1.6/docs/crud-demo-i.html CRUD Demo I] talks about <code>do<var>Something</var></code> methods that apparently are invoked by the corresponding <code><var>something</var></code> method. It's unclear to me what the possible values for <code><var>something</var></code> are. Is there a fixed set of values? Or do they correspond to strings representing status, returned by other methods (such as <code>execute</code>? | + | * the [http://struts.apache.org/2.1.6/docs/crud-demo-i.html CRUD Demo I] talks about <code>do<var>Something</var></code> methods that apparently are invoked by the corresponding <code><var>something</var></code> method. It's unclear to me what the possible values for <code><var>something</var></code> are. Is there a fixed set of values? Or do they correspond to strings representing status, returned by other methods (such as <code>execute</code>)? |
Latest revision as of 17:31, 9 June 2009
Official Struts Documentation
- http://struts.apache.org/
- CRUD Demo I shows approaches useful for creating, retrieving, updating and deleting persisted stuff.
Miscellaneous Notes
Open Questions
- the CRUD Demo I talks about
doSomething
methods that apparently are invoked by the correspondingsomething
method. It's unclear to me what the possible values forsomething
are. Is there a fixed set of values? Or do they correspond to strings representing status, returned by other methods (such asexecute
)?