当前位置: 首页 > 图文教程 > 网络编程 > JSP > 讲一讲setproperty(name="*")的用法或介绍相关资料

JSP
JSP中有关时间和日期类的使用
JSP中引用JavaBean组件
如何在JSP中添加自己的Tag
使用JSP/Servlet上载文件
关于Java Servlet的Filter 技术
JSP数据库连接方式总结
不需ODBC可由IP地址与端口号建立与SQLSERVER的连接
J2ME学习札记(三)
java 设计模式之Observer
在JSP中如何从数据流中取得图片数据并按随意位置显示
三级级联下拉菜单实现
网页中在图层中部分显示图片(窗口形式)
MySQL5.0中文问题及JDBC数据库连接和JSP汉字编码问题解决方法总结
XSLT合并模板简述
JSP入门学习笔记
Structs中基本配置入门
利用jConfig获取xml文件中的配置信息
关于Applet做数字签名,授予访问本地资源(原创)
在JSP开发中使用jdom解析临时存放数据的XML文件
关于Hhtml嵌入打成jar包的Applet方法

JSP 中的 讲一讲setproperty(name="*")的用法或介绍相关资料


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-04   浏览: 365 ::
收藏到网摘: n/a

&lt;jsp:setProperty&gt;<br>
Sets a property value or values in a Bean. <br>
<br>
JSP Syntax<br>
&lt;jsp:setProperty <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name=&quot;beanInstanceName&quot; <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;property= &quot;*&quot;&nbsp;&nbsp;&nbsp;| <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;property=&quot;propertyName&quot; [ param=&quot;parameterName&quot; ]&nbsp;&nbsp;&nbsp;| <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;property=&quot;propertyName&quot; value=&quot;{string | &lt;%= expression %&gt;}&quot; <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br>
/&gt; <br>
Examples<br>
&lt;jsp:setProperty name=&quot;mybean&quot; property=&quot;*&quot; /&gt; <br>
&lt;jsp:setProperty name=&quot;mybean&quot; property=&quot;username&quot; /&gt; <br>
&lt;jsp:setProperty name=&quot;mybean&quot; property=&quot;username&quot; value=&quot;Steve&quot; /&gt; <br>
Description<br>
The &lt;jsp:setProperty&gt; element sets the value of one or more properties in a Bean, using the Bean's setter methods. You must declare the Bean with &lt;jsp:useBean&gt; before you set a property value with &lt;jsp:setProperty&gt;. Because &lt;jsp:useBean&gt; and &lt;jsp:setProperty&gt; work together, the Bean instance names they use must match (that is, the value of name in &lt;jsp:setProperty&gt; and the value of id in &lt;jsp:useBean&gt; must be the same). <br>
<br>
You can use &lt;jsp:setProperty&gt; to set property values in several ways: <br>
<br>
By passing all of the values the user enters (stored as parameters in the request object) to matching properties in the Bean <br>
By passing a specific value the user enters to a specific property in the Bean <br>
By setting a Bean property to a value you specify as either a String or an expression that is evaluated at runtime <br>
Each method of setting property values has its own syntax, as described in the next section. <br>
<br>
Attributes and Usage<br>
name=&quot;beanInstanceName&quot; <br>
The name of an instance of a Bean that has already been created or located with a &lt;jsp:useBean&gt; element. The value of name must match the value of id in &lt;jsp:useBean&gt;. The &lt;jsp:useBean&gt; element must appear before &lt;jsp:seProperty&gt; in the JSP file. <br>
<br>
property=&quot;*&quot; <br>
Stores all of the values the user enters in the viewable JSP page (called request parameters) in matching Bean properties. The names of the properties in the Bean must match the names of the request parameters, which are usually the elements of an HTML form. A Bean property is usually defined by a variable declaration with matching getter and setter methods (for more information, see the JavaBeans API Specification available at http://java.sun.com/beans). <br>
<br>
The values of the request parameters sent from the client to the server are always of type String. The String values are converted to other data types so they can be stored in Bean properties. The allowed Bean property types and their conversion methods are shown in TABLE 1-1. <br>
<br>
How &lt;jsp:setProperty&gt; Converts Strings to Other Values&nbsp;&nbsp;<br>
<br>
Property Type <br>
<br>
<br>
String Is Converted Using <br>
<br>
<br>
<br>
boolean or Boolean <br>
<br>
<br>
java.lang.Boolean.valueOf(String) <br>
<br>
<br>
<br>
byte or Byte <br>
<br>
<br>
java.lang.Byte.valueOf(String) <br>
<br>
<br>
<br>
char or Character <br>
<br>
<br>
java.lang.Character.valueOf(String) <br>
<br>
<br>
<br>
double or Double <br>
<br>
<br>
java.lang.Double.valueOf(String) <br>
<br>
<br>
<br>
integer or Integer <br>
<br>
<br>
java.lang.Integer.valueOf(String) <br>
<br>
<br>
<br>
float or Float <br>
<br>
<br>
java.lang.Float.valueOf(String) <br>
<br>
<br>
<br>
long or Long <br>
<br>
<br>
java.lang.Long.valueOf(String) <br>
<br>
<br>
<br>
<br>
You can also use &lt;jsp:setProperty&gt; to set the value of an indexed property in a Bean. The indexed property must be an array of one of the data types shown in TABLE 1-1. The array elements are converted using the conversion methods shown in the table. <br>
<br>
If a request parameter has an empty or null value, the corresponding Bean property is not set. Likewise, if the Bean has a property that does not have a matching request parameter, the property value is not set. <br>
<br>
property=&quot;propertyName&quot; [ param=&quot;parameterName&quot; ] <br>
Sets one Bean property to the value of one request parameter. In the syntax, property specifies the name of the Bean property and param specifies the name of the request parameter by which data is being sent from the client to the server. <br>
<br>
If the Bean property and the request parameter have different names, you must specify both property and param. If they have the same name, you can specify property and omit param. <br>
<br>
If a parameter has an empty or null value, the corresponding Bean property is not set. <br>
<br>
property=&quot;propertyName&quot; value=&quot;{string | &lt;%= expression %&gt;}&quot; <br>
Sets one Bean property to a specific value. The value can be a String or an expression that is evaluated at runtime. If the value is a String, it is converted to the Bean property's data type according to the conversion rules shown above in TABLE 1-1. If it is an expression, its value must have a data type that matches the the data type of the value of the expression must match the data type of the Bean property. <br>
<br>
If the parameter has an empty or null value, the corresponding Bean property is not set. You cannot use both the param and value attributes in a &lt;jsp:setProperty&gt; element. <br>
<br>
See Also<br>
&lt;jsp:useBean&gt; <br>
&lt;jsp:getProperty&gt; <br>
Tips<br>
When you use property=&quot;*&quot;, the Bean properties are not necessarily set in the order in which they appear in the HTML form or the Bean. <br>
In Sun's JSP 1.0 or JSP 1.1 Tomcat, the Bean properties are set in the order in which they are presented to the JSP container by the Beans introspector. If the order in which the properties are set is important to how your Bean works, use the syntax form property=&quot;propertyName&quot; [ param=&quot;parameterName&quot; ]. Better yet, rewrite your Bean so that the order of setting properties is not important. <br>
<br>