我创建了以下java类。
public class TestClass {
public TestClass () {
}
public String getName() {
return "Rishi";
}
}
JSP文件如下:
<jsp:useBean id="test" class="TestClass" scope="session" />
<jsp:getProperty name="test" property="name" />
上述代码有什么问题:
An error occurred at line: 3 in the jsp file: /testbeans.jsp TestClass cannot be resolved to a type 1: 2: 3: 4: 5: 6:
答案 0 :(得分:1)
TestClass
需要在一个包中,<useBean>
需要引用完全限定的类名。因此,如果TestClass
位于包x
中,那么您需要使用
<jsp:useBean id="test" class="x.TestClass" scope="session" />