报java.lang.NoSuchMethodException:com.action.StudentAction.studentInformation()错误action:public class StudentAction extends ActionSupport{public String StudentInformation(){HttpServletRequest req = ServletActionContext.getRequest();StudentInfo

来源:学生作业学帮网 编辑:学帮网 时间:2024/05/13 15:04:16

报java.lang.NoSuchMethodException:com.action.StudentAction.studentInformation()错误
action:public class StudentAction extends ActionSupport{
public String StudentInformation(){
HttpServletRequest req = ServletActionContext.getRequest();
StudentInfo studentInfo = this.studentService.getStudent(this.stuid);
req.setAttribute("studentInfo",studentInfo);
return "studentInformation";
stuid有get/set方法
xml:
/admin/student/student_list.jsp
/admin/student/student_information
页面就会报NoSuchMethodException 这个错 求答

Struts是区分大小写的,你配置里面全是小写.
但是你的类名和方法名都是大写开头的!