JSP中的JavaBeans使用useBean Action

时间:2012-03-09 03:16:10

标签: jsp javabeans

我创建了以下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: 

1 个答案:

答案 0 :(得分:1)

TestClass需要在一个包中,<useBean>需要引用完全限定的类名。因此,如果TestClass位于包x中,那么您需要使用

<jsp:useBean id="test" class="x.TestClass" scope="session" />