Raible's Wiki

Raible Designs
Wiki Home
News
Recent Changes

AppFuse

Homepage
  - Korean
  - Chinese
  - Italian
  - Japanese

QuickStart Guide
  - Chinese
  - French
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish
  - Japanese

User Guide
  - Korean
  - Chinese

Tutorials
  - Chinese
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish

FAQ
  - Korean

Latest Downloads

Other Applications

Struts Resume
Security Example
Struts Menu

Set your name in
UserPreferences


Referenced by
Articles
Articles_pt
CreateActions_zh
CreateManager
CreateManager_es
SpringControllers_ko
ValidationAndList




JSPWiki v2.2.33

[RSS]


Hide Menu

CreateActions


Difference between version 60 and version 59:

At line 103 changed 1 line.
assertTrue(request.getAttribute(Constants.PERSON_KEY) != null);
assertNotNull(request.getAttribute(Constants.PERSON_KEY));
At line 116 changed 1 line.
assertTrue(personForm != null);
assertNotNull(personForm);
At line 200 changed 1 line.
personForm.getFirstName() + " " +
personForm.getFirstName() + ' ' +
At line 223 changed 1 line.
request.setAttribute(Constants.PERSON_KEY, convert(person));
personForm = (PersonForm) convert(person);
updateFormBean(request, mapping, personForm);
At line 247 changed 1 line.
mgr.savePerson(convert(personForm));
Person person = (Person) convert(personForm);
mgr.savePerson(person);
At line 255 changed 1 line.
request.getSession().setAttribute(Globals.MESSAGE_KEY, messages);
// save messages in session to survive a redirect
saveMessages(request.getSession(), messages);
At line 290 added 1 line.
*

Back to CreateActions, or to the Page History.