不能使用 :“ Bean无法解析为类型”
我只是在玩JSP。我只是想测试一些<jsp:useBean>
东西,但不能。每次使用时<jsp:useBean>
,都会出现错误。即使我只有这个,也会出现错误:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test</title>
</head>
<body>
<jsp:useBean id="mybean" class="Users" scope="session" >
<jsp:setProperty name="mybean" property="name" value="Hello world" />
</jsp:useBean>
</body>
</html>
没有<jsp:useBean>
它,它运行良好。随着<jsp:useBean>
我得到一个错误,如:
Servlet.service() for servlet [jsp] in context with path [/JSPTest] threw exception [Unable to compile class for JSP:An error occurred at line: 10 in the jsp file: /index.jsp
Users cannot be resolved to a type
7: <title>Insert title here</title>
8: </head>
9: <body>
10: <jsp:useBean id="mybean" class="Users" scope="session" >
11: <jsp:setProperty name="mybean" property="name" value="Hello world" />
12: </jsp:useBean>
13: </body>
我正在使用Eclipse,Tomcat 7.0.23和Java 1.7.0_01。
有任何想法吗?
PS:我必须将端口8xxx更改为9xxx,因为oracle DB使用的是标准8xxx。但这可能不是问题的原因。
回答:
您需要将类放入包中,以便能够在其他类中使用它们。缺省包中的类对于本身位于包中的类是不可见的(就像JSP最终会出现的那样)。
因此,给Users
班级一个package
像这样:
package com.example;public class Users {
// ...
}
重新编译并将其放入/WEB-INF/classes/com/example/Users.class
。
然后,您可以如下引用它:
<jsp:useBean id="myBean" class="com.example.Users" />
具体问题
,将复数作为实体的类名称通常是一种气味。该类的单个实例是否真的代表多个用户?为什么没有List<User>
例子?还是实际上代表一个用户?然后应将其命名User
。
以上是 不能使用 :“ Bean无法解析为类型” 的全部内容, 来源链接: utcz.com/qa/428486.html