Servlet/Web 中 JDBC 连接对象返回 null

问题描述 投票:0回答:1

我遇到了 servlet 问题 – 我的数据库连接变为空。奇怪的是,相同的数据库代码在另一个类中运行良好。我已经仔细检查了我的配置,加载了 JDBC 驱动程序,并在 Tomcat 上进行了测试,但 servlet 中的连接始终为空

输入异常报告

消息无法调用“java.sql.Connection.prepareStatement(String)”,因为“connection”为空

描述 服务器遇到意外情况,无法满足请求。

异常

java.lang.NullPointerException:无法调用“java.sql.Connection.prepareStatement(String)”,因为“connection”为空

SingletonConnection.java




    public class SingletonConnection {
    private static final String JDBC_URL = "jdbc:mysql://localhost:3306/CATALOGUE";
    private static final String USERNAME = "root";
    private static final String PASSWORD = "";
    private static Connection connection;
    static {
        try {
            Class.forName("com.mysql.cj.jdbc.Driver");
            connection = DriverManager.getConnection(JDBC_URL, USERNAME, PASSWORD);
        } catch (ClassNotFoundException | SQLException e) {
    
            e.printStackTrace();
        }
    }
    public static Connection getConnection() {
        return connection;
    }
    }
ProduitdaoImp.java
    public class ProduitdaoImp implements IProduitdao {
    @Override
    public List<Produit> chercher(String mc) {
        Connection connection = SingletonConnection.getConnection();
    
        List<Produit> produits = new ArrayList<Produit>();
        try {
    
    PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM PRODUITS                                                                      WHERE DESIGNATION LIKE ?");
            preparedStatement.setString(1, "%" + mc + "%");
            ResultSet rs = preparedStatement.executeQuery();
            while (rs.next()) {
                Produit p = new Produit();
                p.setId(rs.getInt("ID"));
                p.setPrix(rs.getDouble("PRIX"));
                p.setQuantite(rs.getLong("QUANTITE"));
                p.setDesignation(rs.getString("DESIGNATION"));
                produits.add(p);
    
            }
        } catch (SQLException e) {
            e.printStackTrace();
        }
        return produits;
    }  
    }
ControleurServlet.java
    
    `public class ControleurServlet extends HttpServlet {
    public IProduitdao iProduitdao;
    
    @Override
    public void init() throws ServletException {
        iProduitdao = new ProduitdaoImp();
    }
    
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws   ServletException, IOException {
        String path = request.getServletPath();
        if (path.equals("/index.do")) {
            request.getRequestDispatcher("Produits.jsp").forward(request, response);
    
        } else if (path.equals("/chercher.do")) {
            String mot = request.getParameter("motcle");
    
            ProduitModel produitModel = new ProduitModel();
    
            produitModel.setMotCle(mot);
    
            List<Produit> produits = iProduitdao.chercher(mot);
            produitModel.setProduits(produits);
            request.setAttribute("model", produitModel);
            request.getRequestDispatcher("Produits.jsp").forward(request, response);
    
        }
    
    }
    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    }
    
    }

产品.jsp


<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
    <title>Produits</title>
    <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
</head>
<body>
<p></p>
<div>
    <div>
        <div > Recherche des produits</div>
        <div ></div>
        <form method="get" action="chercher.do">
        <label>Mot CLe</label>
            <input type="text" name="motcle"/>

        <button type="submit">Chercher</button>
        </form>
        <table>
            <tr>
            <th>ID</th><th>DESIGNATIONNs</th><th>PRIX</th><th>QUANTITE</th>
            </tr>
            <c:forEach items="${model.produits}" var="p">
                <tr>
                    <td>${p.id}</td>
                    <td>${p.designation}</td>
                    <td>${p.prix}</td>
                    <td>${p.quantite}</td>
                </tr>
            </c:forEach>
        </table>
    </div>
</div>
</body>
</html>
java mysql jdbc servlets jakarta-ee
1个回答
0
投票

数据库连接就像一张面巾纸…拿一张新的,使用它,然后处理掉。切勿同时使用单个连接。

将您的连接凭据详细信息(例如用户名、密码、服务器地址、端口号)存储在

DataSource
对象中。向
DataSource
对象请求新连接。

在学习时,您可以对连接凭据进行硬编码。在实际工作中,我们将这些细节具体化,以便可以更改它们而无需重新编译应用程序。使用 JNDI

DataSource
对象的形式检索凭证。

顺便说一句,

Class.forName
多年来一直不需要加载 JDBC 驱动程序。 JDBC 驱动程序通过 SPI 自动加载。

要了解更多信息,请搜索 Stack Overflow。您会发现很多信息,包括完整的工作示例应用程序,其中一些是我创作的。

© www.soinside.com 2019 - 2024. All rights reserved.