0

重複の可能性:
JSPファイルからサーブレットを呼び出す

次のコードを使用して、conn.javaから(サーブレット)を呼び出しましたindex.jsp。できます。

<%@page import= "java.util.ArrayList"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<%@ page import= "aa.conn" %>
<jsp:useBean id= "conne" class= "conn" scope= "session"/>
<jsp:setProperty name= "conne" property= "*"/>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP</title>

    </head>
    <body>
       <link rel="stylesheet" href="rowcolor.css" type="text/css">
      <%

      conne.con(request, response);
     ArrayList newlist=null;
    newlist=(ArrayList)request.getAttribute("data1");
    int noofrows=(Integer)newlist.get(0);
    int q = noofrows / 5;
    if(noofrows%5!=0)
        q+=1;
    out.println("Pages --->>>");
         for (int t = 1; t <= q; t++) {
            out.println("<a href=index.jsp?id=" + t + " name=" + t + "id=" + t + ">");
            out.println("  " + t);
            out.println("</a>");
        }
     conne.disp(request, response);
     conne.dispgraphtab(request, response);
      %>




    </body>
</html>

ただし、次のコードは機能しません。NewServletから電話したいgraphcon.jsp

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<%@ page import= "aa.NewServlet" %>
<jsp:useBean id= "co" class= "NewServlet" scope= "session"/>
<jsp:setProperty name= "co" property= "*"/>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <body>

    </body>
</html>

このコードの問題は何ですか?エラーは次のとおりです。

exception
javax.servlet.ServletException: java.lang.InstantiationException: NewServlet
root cause 
java.lang.InstantiationException: NewServlet
4

2 に答える 2

-1

質問を明確にしてください。最初に何をしたいのかを説明し、次にやりたいことを達成するためにたどった手順を説明し、次にその手順で発生する問題を説明します。あなたが望むのは、リクエストを 1 つのサーブレットにリダイレクトすることだと思います。これを行うには、sendredirect 関数を使用します。

于 2010-12-01T07:20:58.277 に答える
-1

JSP ファイルからサーブレットを呼び出したい場合は、次のようにします。

JSP ファイル内

<html>
    <head></head>
    <body>
        <form  action="/dataBase/DBInit" method="post">    // here call Servlet
            Design
        </form>
        <%       Logic         %>
    </body>
</html>

Web.xml 内

<servlet>
    <servlet-name>dbname</servlet-name>
    <servlet-class>com.db.DBInit</servlet-class>     // Servlet Path Define Here
</servlet>
<servlet-mapping>
    <servlet-name>dbname</servlet-name>
    <url-pattern>/DBInit</url-pattern>
</servlet-mapping>
于 2010-12-03T11:29:11.450 に答える