简体   繁体   中英

SEVERE: Servlet.service() for servlet [SqlGatewayServlet] in context with path [/DEV-JDBC] threw exception

My question is very similar to [Link]: ( Why Servlet.service() for servlet [XYZ] in context with path [/ABC] threw exception ) But I don't think it was resolved.

This is a simple SQL gateway application, on my personal computer localhost it works fine. However, when I upload the war file to server it throws this exception

org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet [SqlGatewayServlet] in context with path [/DEV-JDBC] threw exception java.lang.NullPointerException at sql.SqlGatewayServlet.do

java.lang.NullPointerException sql.SqlGatewayServlet.doPost(SqlGatewayServlet.java:34)

Line: 34 is Statement statement = connection.createStatement();

SqlGatewayServlet

public class SqlGatewayServlet extends HttpServlet {

@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {

    String sqlStatement = request.getParameter("sqlStatement");
    String sqlResult = "";



    try{
        ConnectionPool pool = ConnectionPool.getInstance();
        Connection connection = pool.getConnection();

        // create a statement
        Statement statement = connection.createStatement();

        // parse the SQL string
        sqlStatement = sqlStatement.trim();
        if(sqlStatement.length() > 6){

            String sqlType = sqlStatement.substring(0, 6);
            if(sqlType.equalsIgnoreCase("select")){

                // create the HTML for the result set
                ResultSet resultSet = statement.executeQuery(sqlStatement);
                sqlResult = SQLUtil.getHtmlTable(resultSet);
                resultSet.close();

            }else{

                int i = statement.executeUpdate(sqlStatement);
                // a DDL statement
                if(i == 0){
                    sqlResult = "The statement executed successfully";
                }else{
                    sqlResult = "The statment executed sucessfully.<br>"
                            + i + "row(s) affected.";
                }                   
            }
        statement.close();
        connection.close();

        }

    }catch( SQLException e){
        sqlResult = "Error executing the SQL statement: <br>"
                + e.getMessage();

    }
    HttpSession session = request.getSession();
    session.setAttribute("sqlResult", sqlResult);
    session.setAttribute("sqlStatement", sqlStatement);

    String url = "/index.jsp";

    RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(url);

    dispatcher.forward(request, response);
}

}

context.xml

<Context path="/DEV-JDBC">

<Resource name="jdbc/uplink_project" auth="Container" 
    maxActive="100" maxIdle="30" maxWait="10000" 
    username="xxxxx" password="xxxxxx" 
    driverClassName="com.mysql.jdbc.Driver" 
    url="jdbc:mysql://localhost:2082/uplink_project?autoReconnect=true" 
    logAbandoned="true" removeAbandoned="true" 
    removeAbandonedTimeout="60" type="javax.sql.DataSource" />

Is there something wrong with my setup? or its the server problem? Please let me know what other information you need.

Thank in advance

可能问题出在getConnection()方法上的ConnectionPool类中,如果connectionnull

If there is a null pointer exception in the following statement:

   Statement statement = connection.createStatement();

then it means that your connection object is null.

As you are initializing your connection object from the ConnectionPool class. So make sure its getConnection method returns a valid connection object:

    ConnectionPool pool = ConnectionPool.getInstance();
    Connection connection = pool.getConnection();

You need to debug your ConnectionPool class.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM