javabean in jsp
hi all, i have i small javabean like this :
package web;
publicclass Student{
private String name;
privateint birth;
public Student(){
name="hahiho";
birth = 1900;
}
public String getName(){
return name;
}
publicint getBirth(){
return birth;
}
publicvoid setName(String name){
this.name = name;
}
publicvoid setBirth(int birth){
this.birth = birth;
}
}
in jsp page :
<jsp:useBean id="sv" class="web.Student" />
<div class="Info">
Student name : <jsp:getProperty name="sv" property="Name" />
</div>
i run it with apache tomcat 5.5 and it results an error page :
Cannot find any information on property 'Name' in a bean of type 'web.Student'
if i replace "<jsp:getProperty name="sv" property="Name" />" with "<%= sv.getName() %>" , it's ok . But i don't know why has error with using jsp:getProperty tag , help me !
thanks.

