jsp代码为:<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<%@ page contentType="text/html; charset=GBK" %>
</head><body bgcolor="#FFFFFF" text="#000000">
<%@ page import="TestBean"%>
<jsp:useBean id="test" class="TestBean" scope="session"/>
<jsp:setProperty name="test" property="*"/>
<%=test.getCount()%>
</form>
</body>
</html>javabean代码为:import java.sql.*;
import java.text.*;
 
public class TestBean{
public TestBean(){
}
public String getCount(){
        String ss="ok";
       return ss;
     }
}