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

ugmeyewa  于 2024-01-05  发布在  Java
关注(0)|答案(2)|浏览(205)

我遇到了一个servlet问题--我的数据库连接变成了null。奇怪的是,同样的数据库代码在另一个类中工作得很好。我已经仔细检查了我的配置,加载了JDBC驱动程序,并在Tomcat上测试了它,但是servlet中的连接仍然顽固地为null。

  1. Type Exception Report
  2. Message Cannot invoke "java.sql.Connection.prepareStatement(String)" because "connection" is null
  3. Description The server encountered an unexpected condition that prevented it from fulfilling the request.
  4. Exception
  5. java.lang.NullPointerException: Cannot invoke "java.sql.Connection.prepareStatement(String)" because "connection" is null

字符串
SingletonConnection.java:

  1. public class SingletonConnection {
  2. private static final String JDBC_URL = "jdbc:mysql://localhost:3306/CATALOGUE";
  3. private static final String USERNAME = "root";
  4. private static final String PASSWORD = "";
  5. private static Connection connection;
  6. static {
  7. try {
  8. Class.forName("com.mysql.cj.jdbc.Driver");
  9. connection = DriverManager.getConnection(JDBC_URL, USERNAME, PASSWORD);
  10. } catch (ClassNotFoundException | SQLException e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. public static Connection getConnection() {
  15. return connection;
  16. }
  17. }


ProduitdaoImp.java

  1. public class ProduitdaoImp implements IProduitdao {
  2. @Override
  3. public List<Produit> chercher(String mc) {
  4. Connection connection = SingletonConnection.getConnection();
  5. List<Produit> produits = new ArrayList<Produit>();
  6. try {
  7. PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM PRODUITS WHERE DESIGNATION LIKE ?");
  8. preparedStatement.setString(1, "%" + mc + "%");
  9. ResultSet rs = preparedStatement.executeQuery();
  10. while (rs.next()) {
  11. Produit p = new Produit();
  12. p.setId(rs.getInt("ID"));
  13. p.setPrix(rs.getDouble("PRIX"));
  14. p.setQuantite(rs.getLong("QUANTITE"));
  15. p.setDesignation(rs.getString("DESIGNATION"));
  16. produits.add(p);
  17. }
  18. } catch (SQLException e) {
  19. e.printStackTrace();
  20. }
  21. return produits;
  22. }
  23. }


ControleurServlet.java

  1. public class ControleurServlet extends HttpServlet {
  2. public IProduitdao iProduitdao;
  3. @Override
  4. public void init() throws ServletException {
  5. iProduitdao = new ProduitdaoImp();
  6. }
  7. @Override
  8. protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  9. String path = request.getServletPath();
  10. if (path.equals("/index.do")) {
  11. request.getRequestDispatcher("Produits.jsp").forward(request, response);
  12. } else if (path.equals("/chercher.do")) {
  13. String mot = request.getParameter("motcle");
  14. ProduitModel produitModel = new ProduitModel();
  15. produitModel.setMotCle(mot);
  16. List<Produit> produits = iProduitdao.chercher(mot);
  17. produitModel.setProduits(produits);
  18. request.setAttribute("model", produitModel);
  19. request.getRequestDispatcher("Produits.jsp").forward(request, response);
  20. }
  21. }
  22. @Override
  23. protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  24. }
  25. }


Produits.jsp

  1. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <html>
  4. <head>
  5. <title>Produits</title>
  6. <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
  7. </head>
  8. <body>
  9. <p></p>
  10. <div>
  11. <div>
  12. <div > Recherche des produits</div>
  13. <div ></div>
  14. <form method="get" action="chercher.do">
  15. <label>Mot CLe</label>
  16. <input type="text" name="motcle"/>
  17. <button type="submit">Chercher</button>
  18. </form>
  19. <table>
  20. <tr>
  21. <th>ID</th><th>DESIGNATIONNs</th><th>PRIX</th><th>QUANTITE</th>
  22. </tr>
  23. <c:forEach items="${model.produits}" var="p">
  24. <tr>
  25. <td>${p.id}</td>
  26. <td>${p.designation}</td>
  27. <td>${p.prix}</td>
  28. <td>${p.quantite}</td>
  29. </tr>
  30. </c:forEach>
  31. </table>
  32. </div>
  33. </div>
  34. </body>
  35. </html>

ki1q1bka

ki1q1bka1#

@Basil和其他人给了你很多好建议,如果你听从了,你就不会陷入这种困境。
但到底是什么地方出了问题?
如果您在尝试使用getConnection()返回的连接(假设)时收到NPE:

  • 这意味着private connection字段是null
  • 这意味着static init块没有给connection赋值,
  • 这意味着try... catch中一定抛出并捕获了一个异常,e.printStackTrace()的输出必须转到Tomcat的标准输出。

因此,在服务器日志(包括“ Catalina .out”输出文件)中查找e.printStackTrace()调用的输出。它应该是ClassNotFoundExceptionSQLException的堆栈跟踪。它将在NPE之前发生。该堆栈跟踪将告诉您导致NPE的 * 实际 * 错误。
但是请遵循Basil的建议!还有,log你的异常而不是使用printStackTrace()

j8yoct9x

j8yoct9x2#

数据库连接就像facial tissue..
将您的连接凭据详细信息(如用户名、密码、服务器地址、端口号)存储在DataSource对象中。在应用运行时保持该DataSource对象可用。每次应用需要访问数据库时,请向缓存的DataSource对象请求新连接。
这里是DataSource上的one tutorial。如果你搜索Stack Overflow,你会发现我和其他人的很多例子。看,Why do we use a DataSource instead of a DriverManager?
在学习过程中,您可以硬编码您的连接凭据。在真实的工作中,我们将这些详细信息具体化,以便无需重新编译应用程序即可更改它们。使用JNDI将凭据作为DataSource对象检索。Tomcat具有一个特性,可以以符合JNDI的方式生成DataSource对象。
顺便说一下,Class.forName加载JDBC驱动程序已经不需要很多年了。在现代Java中,JDBC驱动程序通过SPI自动加载。
我怀疑您使用的是过时的、错误的JDBC教程。
要了解更多,search Stack Overflow .你会发现很多信息,包括完整的工作示例应用程序,一些由我创作。
提示:不情愿地使用static。它不是面向对象的。频繁使用可能意味着糟糕的设计。

相关问题