Description
1. In the Controls tutorial, under the heading "Edit the Controller.jpf File" of Step 2, the added annotation contains the line:
@Jpf.Forward( name="success", path="index.jsp" )
To match the existing annotations, the spaces adjacent to parentheses should be removed:
@Jpf.Forward(name="success", path="index.jsp")
2. In the Page Flow tutorial, under the heading "To Edit the Controller File to Handle the Submitted Data" of Step 4, the added annotation contains the line:
@Jpf.Forward(name = "success", path = "page2.jsp")
To match the existing annotations, the spaces adjacent to the equal signs should be removed:
@Jpf.Forward(name="success", path="page2.jsp")