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
CreateActions_de
SpringControllers_ko
ValidationAndList_pt




JSPWiki v2.2.33

[RSS]


Hide Menu

ValidationAndList


Difference between version 85 and version 31:

At line 1 changed 1 line.
__Part V:__ [Adding Validation and List Screen|ValidationAndList] - Adding validation logic to the personForm so that firstName and lastName are required fields and adding a list screen to display all person records in the database.
__Part IV:__ [Adding Validation and List Screen|ValidationAndList] - Adding validation logic to the PersonForm so that firstName and lastName are required fields and adding a list screen to display all person records in the database.
At line 3 changed 1 line.
;:''This tutorial depends on __Part IV:__ [Configuring Tiles and Action CRUD methods|ConfiguringTiles].''
;:''This tutorial depends on __Part III:__ [Creating Actions and JSPs|CreateActions].''
At line 6 changed 1 line.
This tutorial will show you how to add Validation logic (client and server-side) to the personForm object using Struts' Validator. We'll also create a list screen using the [Display Tag Library|http://displaytag.sf.net] to display all the people in the database.
This tutorial will show you how to add Validation logic (client and server-side) to the PersonForm object using Struts' Validator. We'll also create a list screen using the [Display Tag Library|http://displaytag.sf.net] to display all the people in the database.
At line 11 changed 1 line.
* [1] Add XDoclet Validator to Person.java
* [1] Add XDoclet Validator tags to Person.java
At line 14 added 1 line.
* [4] Add ''getPeople'' methods to PersonDao and Manager
At line 19 changed 2 lines.
!!Add XDoclet Validator to Person.java [#1]
To use Commons Validator with Struts (or Spring MVC), normally you have to write a validation.xml file by hand. If you're not using AppFuse, you also have to configure the Validator Plugin and error keys in your ApplicationResources_en.properties. For more information on this, see the [Validation Made Easy Tutorial|http://www.reumann.net/do/struts/lesson3/step8].
!!Add XDoclet Validator tags to Person.java [#1]
To use the Struts Validator, normally you have to write a validation.xml file by hand. If you're not using AppFuse, you also have to configure the Validator Plugin and error keys in your ApplicationResources.properties. For more information on this, see the [Validation Made Easy Tutorial|http://www.learntechnology.net/struts-lesson-3.do] (there's also a [rich set of tutorials|http://www.learntechnology.net/struts-lesson-1.do] for Struts itself).
At line 22 changed 1 line.
Using XDoclet, it's much easier - we just need to add a couple of ''@struts.validator'' (or ''@spring.validator'') tags to our POJO (Person.java). Let's open it up (src/dao/**/persistence/Person.java) and modify your setFirstName and setLastName methods to resemble the following:
Thanks to XDoclet, it's much easier - you just need to add a couple of ''@struts.validator'' tags to the Person class. Open it up (src/dao/**/model/Person.java) and modify the getFirstName() and getLastName() methods to include ''@struts.validator type="required"'' tags.
At line 27 removed 1 line.
* @return Returns the firstName.
At line 36 removed 1 line.
* @return Returns the lastName.
At line 45 changed 1 line.
%%(color: green)__Spring MVC:__ If you're using Spring for your MVC layer - use @spring.validator tags and put them on the ''setter'' methods, rather than the getters.%%
You can also add a ''msgkey'' attribute to this tag to override the default message key for this error.
At line 47 removed 2 lines.
I should mention that you can also add a ''msgkey'' attribute to this tag to override the default message key for this error.
At line 56 changed 1 line.
Now if you save Person.java and run __ant webdoclet__, a validation.xml file will be generated in build/appfuse/WEB-INF/. It's contents should have now have an entry for "personForm". <span style="color: green">For the Spring MVC version, "personForm" will be "person".
Now if you save Person.java and run __ant clean webdoclet__, a validation.xml file will be generated in build/appfuse/WEB-INF/. Its contents should have now have an entry for "personForm".
At line 74 changed 1 line.
To enable validation in our personForm.jsp, you'll need to make sure your personForm.jsp has the following at the bottom:
Client-side validation is enabled by default in personForm.jsp. There is an &lt;html:javascript> JSP tag and script at the bottom of this page that enables it. The following should already exist (thanks to AppGen) - but you might need to uncomment it if you commented it out in the last tutorial.
At line 77 changed 1 line.
dynamicJavascript="true" staticJavascript="false"/>
dynamicJavascript="true" staticJavascript="false"/>
At line 79 changed 1 line.
src="<html:rewrite page="/scripts/validator.jsp"/>"></script>}}}
src="<html:rewrite page="/scripts/validator.jsp"/>"></script>}}}
At line 81 changed 1 line.
%%(color: green) For the Spring MVC version, change formName="personForm" to __formName="person"__.%%
%%note __NOTE:__ If you have nested objects with validation rules, those will be picked up and put into validation.xml. This is because an @struts.validator tag gets added to the setter of the nested object when the form is generated (using metadata/templates/struts_form.xdt). If you have many-to-many bi-directional relationships between objects, this can cause a problem. There are two solutions to fix this. The first is to remove the @struts.validator tag from struts_form.xdt and manually place it on the setter in your POJO. The second is [described here|https://appfuse.dev.java.net/issues/show_bug.cgi?id=88].%%
At line 85 changed 1 line.
Now that we have Validation configured for this form, whenever this form is used in an action-mapping with validate="true", these rules will be applied. In the [last tutorial|ConfiguringTiles], we added the "savePerson" action-mapping for PersonAction. The XDoclet tags for this action-mapping were:
Now that you have Validation configured for this form, whenever this form is used in an action-mapping with validate="true", these rules will be applied. In the [last tutorial|CreateActions], we added the "savePerson" action-mapping for PersonAction. The XDoclet tags for this action-mapping were:
At line 90 changed 1 line.
* validate="true" parameter="action" input="edit"
* validate="true" parameter="method" input="edit"
At line 93 changed 1 line.
So now, as long as your web/pages/personForm.jsp has &lt;html:form action="savePerson"&gt;, validation should kick in when we try to save this form. Run __ant db-load deploy__, start Tomcat and go to [http://localhost:8080/appfuse/editPerson.do?id=1].
So now, as long as your web/pages/personForm.jsp has &lt;html:form action="savePerson"&gt;, validation should kick in when we try to save this form. Run __ant db-load deploy__, start Tomcat and go to [http://localhost:8080/appfuse/editPerson.html?id=1].
At line 101 changed 1 line.
To make sure things are ''really'' working as expected, you can turn off JavaScript and ensure the server-side validation is working. This is easy in [Mozilla Firebird|http://www.mozilla.org/products/firebird/] (my favorite browser), just go to Tools &rarr; Options &rarr; Web Features and uncheck "Enable JavaScript". Now if you clear the fields and save the form, you should see the following:
To make sure things are ''really'' working as expected, you can turn off JavaScript and ensure the server-side validation is working. This is easy in [Firefox|http://www.mozilla.org/products/firefox/] (my favorite browser), just go to Tools &rarr; Options &rarr; Web Features and uncheck "Enable JavaScript". Now if you clear the fields and save the form, you should see the following:
At line 103 changed 1 line.
%%(border: 1px solid black; margin: 0 auto; height: 202px; width: 423px)
%%(border: 1px solid black; margin: 0 auto; height: 215px; width: 521px)
At line 127 changed 1 line.
Open test/dao/**/persistence/PersonDaoTest.java and add a ''testGetPeople'' method:
Open test/dao/**/dao/PersonDaoTest.java and add a ''testGetPeople'' method:
At line 132 changed 1 line.
person = new Person();
person = new Person();
At line 138 changed 1 line.
The reason I'm passing in a person object to the ''getPeople'' method is to allow for filtering (based on values in person) in the future.
The reason I'm passing in a person object to the ''getPeople'' method is to allow for filtering (based on values in person) in the future. Adding this parameter in your getPeople() method signature is optional, but the rest of this tutorial assumes you have done this.
At line 144 changed 3 lines.
public void testGetPeople() {
List results = mgr.getPeople(new Person());
assertTrue(results.size() > 0);
public void testGetPeople() throws Exception {
List results = new ArrayList();
person = new Person();
results.add(person);
// set expected behavior on dao
personDao.expects(once()).method("getPeople")
.will(returnValue(results));
List people = personManager.getPeople(null);
assertTrue(people.size() == 1);
personDao.verify();
At line 150 changed 1 line.
Save all your files and make sure everything compiles with __ant clean compile__. Now you should be able to run both tests by running the following:
In order for these tests to compile, you need to add the ''getPeople()'' method to the PersonDao and PersonManager interfaces, and their implementations.
At line 158 added 47 lines.
!!Add getPeople() method to DAO and Manager [#4]
Open src/dao/**/dao/PersonDao.java and add the getPeople() method signature:
[{Java2HtmlPlugin
public List getPeople(Person person);
}]
Now add the same method signature to src/service/**/service/__PersonManager.java__. Save all your files and adjust the imports in your tests. Next you need to implement the getPeople() method in your implementation classes. Open src/dao/**/dao/hibernate/PersonDaoHibernate.java and add the following method:
[{Java2HtmlPlugin
public List getPeople(Person person) {
return getHibernateTemplate().find("from Person");
}
}]
<div class="note" style="margin-left: 30px">
You'll notice here that nothing is being done with the ''person'' parameter. This is just a placeholder for now - in the future you may want to filter on it's properties using [Hibernate's Query Language|http://www.hibernate.org/hib_docs/reference/en/html/queryhql.html] (HQL) or using [Criteria Queries|http://www.hibernate.org/hib_docs/reference/en/html/querycriteria.html].
''An example using a Criteria Query:''
[{Java2HtmlPlugin
// filter on properties set in the person object
HibernateCallback callback = new HibernateCallback() {
public Object doInHibernate(Session session) throws HibernateException {
Example ex = Example.create(person).ignoreCase().ignoreZeroes()
.enableLike(MatchMode.ANYWHERE);
return session.createCriteria(Person.class).add(ex).list();
}
};
return (List) getHibernateTemplate().execute(callback);
}]
</div>
Now implement the ''getPeople()'' method in src/service/**/impl/PersonManagerImpl.java:
[{Java2HtmlPlugin
public List getPeople(Person person) {
return dao.getPeople(person);
}
}]
After saving all your changes, you should be able to run both tests by executing the following:
At line 155 changed 1 line.
If everything works - ''nice job!'' Now we need to add this ''retrieve all'' functionality to the web tier.
If everything works - ''nice job!'' Now you need to add this ''retrieve all'' functionality to the web tier.
At line 157 changed 1 line.
!!Add testSearch method to Action Test [#5]
!!Add testSearch() method to Action Test [#5]
At line 160 removed 2 lines.
;:%%(color: blue)''I copied the testSearch method from UserActionTest.java and changed the "User" stuff to "Person".''
At line 166 changed 1 line.
addRequestParameter("action", "Search");
addRequestParameter("method", "Search");
At line 171 changed 1 line.
assertTrue(getRequest().getAttribute(Constants.PERSON_LIST) != null);
assertNotNull(getRequest().getAttribute(Constants.PERSON_LIST));
At line 188 changed 1 line.
Now save all your changes. You won't be able to run __ant test-cactus -Dtestcase=PersonAction__ yet since ''PersonAction.search()'' does not exist (yet). Let's add it.
Now save all your changes. You won't be able to run __ant test-web -Dtestcase=PersonAction__ yet since ''PersonAction.search()'' does not exist (yet).
At line 195 changed 1 line.
* @struts.action-forward name="list" path=".personList"
* @struts.action-forward name="list" path="/WEB-INF/pages/personList.jsp"
At line 212 removed 1 line.
// Exceptions are caught by ActionExceptionHandler
At line 222 changed 1 line.
Now if you run __ant test-cactus -Dtestcase=PersonAction__, you will get an error that the .personList definition does not exist. Or, at least that is what the following error is trying to say:
Run __ant test-web -Dtestcase=PersonAction__.
At line 224 changed 4 lines.
{{{
Testcase: testSearch(org.appfuse.webapp.action.PersonActionTest): FAILED
was expecting '/appfuse/.personList' but received '/appfuse.personList'
}}}
__Nice!__
%%(color:green)BUILD SUCCESSFUL\\
Total time: 1 minute 26 seconds%%
At line 230 changed 1 line.
Let's create the JSP to hold our list and a Tile's definition for it. There should already be a personList.jsp in the ''web'' folder of your project. Copy this file to web/pages/personList.jsp. If it's not there, you can use the ViewGen Tool to create it. To do this from the command-line, navigate to extras/viewgen and run __ant -Dform.name=PersonForm__. This will generate a PersonFormList.jsp in extras/viewgen/build.
Open the personList.jsp file in ''web/pages''. You'll probably want to change the code to show the plural form of the items you're listing. The generated name in this example is "persons" and it should probably be people. At or near line 31, you should have the following line:
At line 232 removed 37 lines.
Once personList.jsp exists in ''web/pages'', open it for editing.
At the top of the file is a &lt;bean:struts&gt; tags that exposes the edit screen's forward as a page-scoped variable. This should already have a value of "editPerson".
[{Java2HtmlPlugin
<%-- For linking to edit screen --%>
<bean:struts id="editURL" forward="editPerson"/>
}]
Now we need to add this to the metadata/web/global-forwards.xml, as well as one for viewing the list. This way, they will get included in our struts-config.xml file.
[{Java2HtmlPlugin
<forward name="editPerson" path="/editPerson.html"/>
<forward name="viewPeople" path="/editPerson.html?action=Search"/>
}]
In the first &lt;button&gt; you find in personList.jsp, we need to populate another forward - this time to the Add screen. Make sure your button's onclick event matches the following:
[{Java2HtmlPlugin
onclick="location.href='<html:rewrite forward="editPerson"/>'">
}]
The template we used to create this JSP has the column for the id property hard-coded, so XDoclet adds it twice. We need to remove this from personList.jsp - so delete the following from this file:
[{Java2HtmlPlugin
<display:column property="id" sort="true" headerClass="sortable"
titleKey="personForm.id"/>
}]
;:''If anyone knows of a way to modify the extras/viewgen/src/List_jsp.xdt to not include this column tag, please let me know.''
Another thing you'll probably want to change is the plural form of the items you're listing. The generated name in this example is "persons" and it should probably be people. At or near line 31, you should have the following line:
At line 275 changed 1 line.
Now we need to add a new definition to tiles-config.xml for this list screen. Open web/WEB-INF/tiles-config.xml and add the following XML:
Finally, add the title and heading keys (personList.title and personList.heading) to web/WEB-INF/classes/ApplicationResources.properties. Open this file and add the following:
At line 277 removed 14 lines.
;:%%(color: blue)''I usually copy an existing list definition - i.e. .userList.''
[{Java2HtmlPlugin
<!-- Person List definition -->
<definition name=".personList" extends=".mainMenu">
<put name="titleKey" value="personList.title" />
<put name="headingKey" value="personList.heading" />
<put name="content" value="/WEB-INF/pages/personList.jsp"/>
</definition>
}]
Finally, we need to add these keys (personList.title and personList.heading) to web/WEB-INF/classes/ApplicationResources_en.properties. Open this file and add the following:
At line 298 changed 1 line.
{{personList.heading}} will be put into an &lth1&gt; tag before any page content. At this point, your PersonActionTest should succeed. Save all your changes, navigate to the basedir of your project and try it by executing __ant test-cactus -Dtestcase=PersonAction__.
{{personList.heading}} will be put into an &lth1&gt; tag before any page content.
At line 300 changed 5 lines.
%%(color:green)
''__Sweet!__''\\
BUILD SUCCESSFUL\\
Total time: 1 minute 0 seconds
%%
At this point, you should be able to run __ant clean deploy__, start Tomcat and view this page in your browser at [http://localhost:8080/appfuse/editPerson.html?method=Search].
At line 306 changed 1 line.
At this point, you should be able to view this page in your browser at [http://localhost:8080/appfuse/editPerson.do?action=Search].
Now that we have a List Screen, let's change the pages that are displayed after adding and deleting a new Person. In src/web/**/action/PersonAction.java, change the ''mapping.findForward("mainMenu")'' in the ''save'', ''delete'' and ''cancel'' methods to be:
At line 308 removed 2 lines.
Now that we have a List Screen, let's change the pages that are displayed after adding and deleting a new Person. In src/web/**/PersonAction.java, change the ''mapping.findForward("mainMenu")'' in the ''save'', ''delete'' and ''cancel'' methods to be:
At line 315 changed 1 line.
You will also need to change ''verifyForward("list")'' to be ''verifyForward("viewPeople")'' in the testRemove method of test/web/**/PersonActionTest.java. Lastly, the Canoo tests "AddPerson" and "DeletePerson" need to be updated. Open test/web/web-tests.xml and change the following line in the "AddPerson" target:
You will also need to change ''verifyForward("mainMenu")'' to be ''verifyForward("viewPeople")'' in the testRemove method of test/web/**/action/PersonActionTest.java. Lastly, the Canoo tests "AddPerson" and "DeletePerson" need to be updated. Open test/web/web-tests.xml and change the following line in the "AddPerson" target:
At line 333 changed 2 lines.
{{{<verifytitle description="display Person List"
text=".*$(personList.title}.*" regex="true"/>}}}
{{{<verifytitle description="display Person List" text=".*${personList.title}.*" regex="true"/>}}}
At line 336 changed 1 line.
We use "viewPeople" instead of "list" so that the search method will be executed, rather than simply forwarding to the .personList definition (which the "list" forward points to).
Finally, declare the viewPeople forward in metadata/web/global-forwards.xml after viewUsers as below:
At line 338 changed 1 line.
To test that displaying this page works, we can create a new JSP test in test/web/web-tests.xml:
{{{<forward name="viewPeople" path="/editPerson.html?method=Search"/>}}}
At line 331 added 4 lines.
The name "viewPeople" is used instead of "list" so that the search method will be executed, rather than simply forwarding to the personForm.jsp (which the "list" forward points to).
To test that displaying this page works, create a new JSP test in test/web/web-tests.xml:
At line 349 changed 1 line.
<invoke description="click View People link" url="/editPerson.html?action=Search"/>
<invoke description="click View People link" url="/editPerson.html?method=Search"/>
At line 371 added 4 lines.
%%note __NOTE:__ The other links in mainMenu.jsp don't use <html:link> so this JSP can be shared among the various web framework implementations in AppFuse (i.e. Spring MVC and WebWork).%%
At line 384 changed 1 line.
Where ''menu.viewPeople'' is an entry in web/WEB-INF/classes/ApplicationResources_en.properties.
Where ''menu.viewPeople'' is an entry in web/WEB-INF/classes/ApplicationResources.properties.
At line 396 changed 1 line.
Make sure the above XML is inside the &lt;Menus&gt; tag, but not within another &lt;Menu&gt;. Then add this new menu to web/common/menu.jsp - which should now looks as follows:
Make sure the above XML is inside the &lt;Menus&gt; tag, but not within another &lt;Menu&gt;. Then add this new menu to web/common/menu.jsp - which should now look as follows:
At line 414 changed 1 line.
Now if you run __ant clean deploy__ and start Tomcat, you should see something like the screenshot below.
Now if you run __ant clean deploy__ start Tomcat and go to [http://localhost:8080/appfuse/mainMenu.html], you should see something like the screenshot below.
At line 423 changed 1 line.
You've completed the full lifecycle of developing a set of master-detail pages with AppFuse - __congratulations__. Now the real test is if you can run all the tests in your app without failure. To test, stop tomcat and run __ant clean test-all__. This will run all the unit tests within your project. As a reminder, it should be easy to setup and test AppFuse from scratch using __ant setup-db setup-tomcat test-all__. Also, if you're looking for more robust examples - checkout [StrutsResume].
You've completed the full lifecycle of developing a set of master-detail pages with AppFuse and Struts - __Congratulations__! Now the real test is if you can run all the tests in your app without failure. To test, stop tomcat and run __ant clean test-all__. This will run all the unit tests within your project. As a reminder, it should be easy to setup and test AppFuse from scratch using __ant setup-db setup-tomcat test-all__. Also, if you're looking for more robust examples - checkout [Struts Resume|StrutsResume].

Back to ValidationAndList, or to the Page History.