20161013最新提示:既然来到这了,为什么不看看 JavaBeans 官方文档学习 ?
鉴于Spring的beans包遵守JavaBean specs,有必要认真研究下JavaBean specs。
先看看wiki上是怎么说的:
定义
Java平台下,JavaBeans是那些将很多object包含进一个单独object的类,这个单独的object就是bean。JavaBeans的特点:serializable、无参构造、setter/getter properties。
优点:
- bean的properties、events、methods可控。
- bean可以注册接收其他objects的events;可以生成events发送给其他objects。
- 可以提供辅助软件来configure一个bean。
- bean的configuration settings能够被持久化、被还原。
缺点:
- 无参构造的类被实例化时的状态是无效的。developer可能无法意识到不正常的实例化。
- JavaBeans都是可修改的,所以不具备不可修改对象的优点。
- 必须创建很多setter/getter,导致大量呆板的代码。
JavaBeans API
JavaBean的功能是由 java.beans 包 中的类和接口提供的。
接口 | 描述 |
AppletInitializer | 用于初始化同时是applets的Beans。 |
BeanInfo | 允许设计者详细描述关于一个Bean的events、methods还有properties的信息。 |
Customizer | 允许设计者提供GUI,可以configure a bean。 |
DesignMode | 决定一个bean是否正在design mode下执行。 |
ExceptionListener | 发生异常时,该接口的一个方法会被调用。 |
PropertyChangeListener | 当一个bound property被改变时,该接口的一个方法会被调用。 |
PropertyEditor | 该接口的实现允许设计者修改和显示property values。 |
VetoableChangeListener | 当一个Constrainted property被改变时,该接口的一个方法会被调用。 |
Visibility | 该接口中的方法允许bean在GUI不可用的环境下执行。 |
注:bound property和constrainted property,详见 properties 。
JavaBeans conventions (惯例)
- 类必须有一个public的无参构造。
- 类的properties必须能通过get/set访问。—boolean properties可以通过is访问。
- 类必须是serializable。
代码示例:
package player; public class PersonBean implements java.io.Serializable { /**
* Property <code>name</code> (note capitalization) readable/writable.
*/
private String name = null; private boolean deceased = false; /** No-arg constructor (takes no arguments). */
public PersonBean() {
} /**
* Getter for property <code>name</code>
*/
public String getName() {
return name;
} /**
* Setter for property <code>name</code>.
* @param value
*/
public void setName(final String value) {
name = value;
} /**
* Getter for property "deceased"
* Different syntax for a boolean field (is vs. get)
*/
public boolean isDeceased() {
return deceased;
} /**
* Setter for property <code>deceased</code>.
* @param value
*/
public void setDeceased(final boolean value) {
deceased = value;
}
}
简单测试:
import player.PersonBean; /**
* Class <code>TestPersonBean</code>.
*/
public class TestPersonBean {
/**
* Tester method <code>main</code> for class <code>PersonBean</code>.
* @param ARGS
*/
public static void main(String[] args) {
PersonBean person = new PersonBean(); person.setName("Bob");
person.setDeceased(false); // Output: "Bob [alive]"
System.out.print(person.getName());
System.out.println(person.isDeceased() ? " [deceased]" : " [alive]");
}
}
JSP 中的使用:
<% // Use of PersonBean in a JSP. %>
<jsp:useBean id="person" class="player.PersonBean" scope="page"/>
<jsp:setProperty name="person" property="*"/> <html>
<body>
Name: <jsp:getProperty name="person" property="name"/><br/>
Deceased? <jsp:getProperty name="person" property="deceased"/><br/>
<br/>
<form name="beanTest" method="POST" action="testPersonBean.jsp">
Enter a name: <input type="text" name="name" size="50"><br/>
Choose an option:
<select name="deceased">
<option value="false">Alive</option>
<option value="true">Dead</option>
</select>
<input type="submit" value="Test the Bean">
</form>
</body>
</html>
参考链接: