At line 26 changed 1 line. |
* Execute __ant -Dobject.name=Person -Dappgen.type=pojo__ to generate a bunch of files in extras/appgen/build/gen. In fact, it'll generate all the files you need to complete this tutorial. However, let's just grab the ones you need. |
* Execute __ant -Dobject.name=Person -Dappgen.type=pojo -Dapp.module=__ to generate a bunch of files in extras/appgen/build/gen. In fact, it'll generate all the files you need to complete this tutorial. However, let's just grab the ones you need. |
At line 28 changed 3 lines. |
** web/personForm.jsp (JSP file for viewing a single Person) |
** web/personList.jsp (JSP file for viewing a list of People) |
* Copy the contents of Person.properties into web/WEB-INF/classes/ApplicationResources_en.properties. These are all the keys you will need for titles/headings and form properties. Here is an example of what you should add to ApplicationResources_en.properties: |
** web/pages/personForm.jsp (JSP file for viewing a single Person) |
** web/pages/personList.jsp (JSP file for viewing a list of People) |
* Copy the contents of Person.properties into web/WEB-INF/classes/ApplicationResources.properties. These are all the keys you will need for titles/headings and form properties. Here is an example of what you should add to ApplicationResources.properties: |
At line 34 changed 3 lines. |
personForm.id=Id |
personForm.firstName=First Name |
personForm.lastName=Last Name |
person.id=Id |
person.firstName=First Name |
person.lastName=Last Name |
At line 60 changed 2 lines. |
* Add keys in ApplicationResources_en.properties the titles and headings in the JSPs |
In the generated JSPs, there are two keys for the title (top of the browser window) and the header (heading in the page). We now need to add these two keys (personDetail.title and personDetail.heading) to ApplicationResources_en.properties. |
* Add keys in ApplicationResources.properties the titles and headings in the JSPs |
In the generated JSPs, there are two keys for the title (top of the browser window) and the header (heading in the page). We now need to add these two keys (personDetail.title and personDetail.heading) to ApplicationResources.properties. |
At line 131 changed 1 line. |
assertNotNull(request.getSession().getAttribute("messages")); |
assertNotNull(request.getSession().getAttribute("successMessages")); |
At line 139 changed 1 line. |
assertNotNull(request.getSession().getAttribute("messages")); |
assertNotNull(request.getSession().getAttribute("successMessages")); |
At line 214 removed 3 lines. |
Object[] args = |
new Object[] { person.getFirstName() + ' ' + person.getLastName() }; |
|
At line 220 changed 1 line. |
saveMessage(request, getText("person.deleted", args, locale)); |
saveMessage(request, getText("person.deleted", locale)); |
At line 225 changed 1 line. |
saveMessage(request, getText(key, args, locale)); |
saveMessage(request, getText(key, locale)); |
At line 239 changed 1 line. |
There are a few keys you need to add to ApplicationResources_en.properties to display the success messages. This file is located in ''web/WEB-INF/classes'' - open it and add the following: |
There are a few keys you (might) need to add to ApplicationResources.properties to display the success messages. This file is located in ''web/WEB-INF/classes'' - open it and add the following: |
At line 243 changed 3 lines. |
{{{person.added=Information for <strong>{0}</strong> has been added successfully. |
person.deleted=Information for <strong>{0}</strong> has been deleted successfully. |
person.updated=Information for <strong>{0}</strong> has been updated successfully. |
{{{person.added=Person has been added successfully. |
person.updated=Person has been updated successfully. |
person.deleted=Person has been deleted successfully. |
At line 319 removed 1 line. |
Now let's clean up the generated personForm.jsp by making the "id" property a hidden field. Remove the following code block from web/pages/personForm.jsp: |
At line 321 removed 26 lines. |
[{Java2HtmlPlugin |
|
<tr> |
<th> |
<appfuse:label key="person.id"/> |
</th> |
<td> |
<spring:bind path="person.id"> |
<input type="text" name="<c:out value="${status.expression}"/>" |
id="<c:out value="${status.expression}"/>" |
value="<c:out value="${status.value}"/>" /> |
<span class="fieldError"><c:out value="${status.errorMessage}"/></span> |
</spring:bind> |
</td> |
</tr> |
}] |
|
And add the following before the <table> tag: |
|
[{Java2HtmlPlugin |
|
<spring:bind path="person.id"> |
<input type="hidden" name="<c:out value="${status.expression}"/>" value="<c:out value="${status.value}"/>" /> |
</spring:bind> |
}] |
|
At line 384 added 1 line. |
<verifytext description="verify success message" text="${person.updated}"/> |
At line 433 changed 2 lines. |
<verifytext description="verify success message" |
text="Information for <strong>Abbie Raible</strong> has been added successfully."/> |
<verifytext description="verify success message" text="${person.added}"/> |
At line 417 added 1 line. |
<prepareDialogResponse description="Confirm delete" dialogType="confirm" response="true"/> |
At line 419 added 1 line. |
<verifyNoDialogResponses/> |
At line 449 changed 2 lines. |
<verifytext description="verify success message" |
text="Information for <strong>Matt Canoo</strong> has been deleted successfully."/> |
<verifytext description="verify success message" text="${person.deleted}"/> |