Errata

Programming Jakarta Struts

Errata for Programming Jakarta Struts

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
Printed
Page xii
Chapter 5 paragraph

"This chapter takes in-depth look..."

NOW READS:
"This chapter takes an in-depth look..."

Anonymous    Jan 01, 2006
Printed
Page 8
3rd paragraph

"...are generally easier to maintain often more extensible..."

NOW READS:
"...are generally easier to maintain and often more extensible..."

Anonymous    Jan 01, 2006
Printed
Page 12
6th paragraph, third line

"UIP Shares some of the same goals as MVC frameworks like Struts, but is meant for use with for the .NET programming model"

NOW READS:
"UIP Shares some of the same goals as MVC frameworks like Struts, but is meant for use with the .NET programming model"

Anonymous    Jan 01, 2006
Printed
Page 20
6th paragraph

"For enterprise resource planning (ERP) systems, a proprietary adaptor b is used,..."

NOW READS:
"For enterprise resource planning (ERP) systems, a proprietary adaptor is used,..."

Anonymous    Jan 01, 2006
Printed
Page 33
Bottom, in the javadoc comment before forward(req,res)

The comment ends
"...see what happens to them during a redirect"
should be
"...see what happens to them during a forward"

Anonymous   
Printed
Page 61
Example 3-7, Labels section

there are two definitions for the key label.balance

Anonymous   
Printed
Page 113
Tip at bottom of page, 1st sentence

"The default behavior of the Struts famework is not to store the Locale
in the user's session."

remove the word "not"

Anonymous   
Printed
Page 164
code at top of page

try{
service = factory.createService();
}catch( Exception ex ){
log.error( "Problem creating the Storefront Service", ex );
}
return service;

should be:

IStorefrontService service service = null;
try{
service = factory.createService();
}catch( Exception ex ){
log.error( "Problem creating the Storefront Service", ex );
}

Anonymous   
Printed
Page 411
1st para of Overview of JSF Architecture

"However, JFS adds functionality...."

NOW READS:
"However, JSF adds functionality....

Anonymous    Jan 01, 2006