You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Rapheal Kaplan <ra...@adone.com> on 1999/11/30 00:42:40 UTC

Boolean value translation / jsp:setProperty

	It seems that the Boolean value translations for the jsp:setProperty tag
is not correct.  It is converting the value by calling:

	Boolean.getBoolean( request.getParameter( "param" ) )

rather than:

	Boolean.valueOf( request.getParameter( "param" ) )

as described in the jsp specification.  This is a problem in that
the getBoolean method will return the value of a boolean parameter
from the system properties.  As it stands, I can not use boolean values
for bean properties.

Rapheal Kaplan			rafe@adone.com
AdOne, LLC
Senior Software Architect