em có viết 1 cái javabean thế này :
Code:
package web;
public class Student {
private String name;
private int birth;
public Student() {
name= "hahiho";
birth = 1900;
}
public String getName(){
return name;
}
public int getBirth(){
return birth;
}
public void setName(String name){
this.name = name;
}
public void setBirth(int birth){
this.birth = birth;
}
}
trong trang jsp :
Code:
<jsp:useBean id="sv" class="web.Student" />
<div class="Info">
<p>Student name : <jsp:getProperty name="sv" property="Name" /></p>
</div>
nhưng mà ko hiểu sao khi chạy apache nó toàn báo không tìm thấy thuộc tính "Name"
Cannot find any information on property 'Name' in a bean of type 'web.Student'
nếu thay đoạn "<jsp:getProperty name="sv" property="Name" />" bằng "<%= sv.getName() %>" thì nó chạy tốt
các bác giúp em với , thanks các bác.