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

JSP
JDBC 入门(一) - 开始
JDBC 入门(二) - 建立联接
JDBC 入门(三) - 设置表
java在Linux下的web应用(一)
java在Linux下的web应用(二)
Servlet开发中JDBC的高级应用
可以使用多个jsp定制标签在JSP中达到接近servelt的处理效果
JSP应用程序开发中安全问题的实例解析
现场纪实—如何入侵基于JSP的网站
windows中双击jar文件即可运行写法
修改Tomcat的主配置文件,增加一个Postgre数据库JDBC连接池。
JSP报表打印的一种简单解决方案
JSP如何保存用户上次登录时间
当Tomcat遭遇JBDC Driver,出现 Cannot create resource instance !
使用jsp生成彩色汉字验证码
基于JDBC的数据库连接池技术研究与应用
JSP数据库连接池的必要性
在JSP页面中实现检索数据的分页显示
在jsp中作HTTP认证的方法
JSP通过JDBC与Oracle相连

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-04   浏览: 375 ::
收藏到网摘: 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>