日期:2014-05-17 浏览次数:20797 次
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'BeanTest.jsp' starting page</title>
</head>
<body>
<!-- 使用JSP编译指令定义bean -->
<jsp:useBean id="test" class="com.book.web3.SimpleBean"/>
<!-- 使用JSP编译指令给Bean赋值-->
<jsp:setProperty name="test" property="message" value="Hello reader"/>
刚刚赋值的消息是:<jsp:getProperty name="test" property="message"/>
<br/>
</body>
</html>
package com.book.web3;
public class SimpleBean {
//属性定义
private String message="No message specified";
//属性的getter/setter方法
public String getMessage(){
return (message);
}
public void setMessage(String message){
this.message=message;
}
}