免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2904 | 回复: 1
打印 上一主题 下一主题

【求教】The value for the useBean class attribute Person is invalid [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-07-27 22:19 |只看该作者 |倒序浏览
小弟是初学者,用的是JDK1.6,照着书上的例子写了个javaBean 可是测试总报错
org.apache.jasper.JasperException: /t4.jsp(7,0) The value for the useBean class attribute Person is invalid.

我在网上查了很多资料,还是不成功。请各位前辈看看病根在哪? 谢谢了。

工程文件结构
E:\workspace\my1
E:\workspace\my1\t4.jsp
E:\workspace\my1\WEB-INF\classes\test\Person.java
-----------------------------------------------------------------------------------------
    Person.java 文件内容
-------------------------------------------
package test;

public class Person {
        public Person(){
        }

        private String name;
        private int age;
       
        public void setName(String name) {
                this.name = name;
        }

        public void setAge(int age) {
                this.age = age;
        }

        public String getName() {
                return name;
        }

        public int getAge() {
                return age;
        }
}


-----------------------------------------------------------------------------------------
     t4.jsp 文件内容
-------------------------------------------
<%@page contentType="text/html; charset=GBK" language="java" %>
<html>
<head>
<title>测试</title>
</head>
<body>
<jsp:useBean id="p1" scope="page" class="test.Person"/>
<jsp:setProperty name="p1" property="name" value="wawa"/>
<jsp:setProperty name="p1" property="age" value="23"/>
<jsp:getProperty name="p1" property="name"/><br>
<jsp:getProperty name="p1" property="age"/>
</body>
<html>

--------------------------------
程序报错
-------------------------------
org.apache.jasper.JasperException: /t4.jsp(7,0) The value for the useBean class attribute Person is invalid.

[ 本帖最后由 lan97 于 2008-7-27 22:20 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-07-28 10:26 |只看该作者
请问你的test.Person编译了没?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP