如何在 servlet 中调用 DAO 方法来提取查询结果

Posted

技术标签:

【中文标题】如何在 servlet 中调用 DAO 方法来提取查询结果【英文标题】:How to invoke a DAO method in a servlet to pull the result of a query 【发布时间】:2011-08-08 22:41:02 【问题描述】:

我一直在尝试找到正确的过程来从我的一个 servlet 中的 DAO 中提取查询结果,但没有成功。

我们将不胜感激帮助解决我的问题。

我的 DAO 叫做 BalanceDAO,如下:

package HWpackage;

import java.sql.*;
import java.text.*;
import java.util.*;

public class BalanceDAO


static Connection currentConn = null;
static ResultSet rsBalance = null;

public static BalanceBean total(BalanceBean bean)

//preparing some objects for connection
Statement stmt = null;
String id = bean.getID();
String balance = bean.getBalance();

String balanceQuery =
    "select balance as balance from users where id='"
        + id
        + "'";
    try

    //connect to DB
    currentConn = DBConnection.getConnection();
    stmt=currentConn.createStatement();
    rsBalance = stmt.executeQuery(balanceQuery);
    boolean more = rsBalance.next();

    // if user does not have a balance
    if (!more)
    
        balance = "0.00";
    



catch (Exception ex)

    System.out.println("Log In failed: An Exception has occurred! " + ex);


//some exception handling
finally

    if (rsBalance != null) 
        try 
            rsBalance.close();
         catch (Exception e) 
        rsBalance = null;
    

    if (stmt != null) 
        try 
            stmt.close();
         catch (Exception e) 
        stmt = null;
    

    if (currentConn != null) 
        try 
            currentConn.close();
         catch (Exception e) 
        

        currentConn = null;
    


return bean;




我想将 balanceQuery 的结果提取到我的 ViewAccounts servlet 中。 我正在尝试使用名为“balance”的变量,以便 out.println 部分中包含“balance +”的行有效。

package HWpackage;

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.*;
import javax.servlet.http.*;

public class ViewAccounts extends HttpServlet 

    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException 
        response.setContentType("text/html;charset=UTF-8");
        PrintWriter out = response.getWriter();

        HttpSession session = request.getSession();
        UserBean2 userBean2 = (UserBean2) session.getAttribute("userBean2");
        String id = userBean2.getUsername();



        try 

            out.println("<html>");
            out.println("<head>");
            out.println("<title>Servlet ViewAccounts</title>");  
            out.println("</head>");
            out.println("<body>");
            out.println("<form action=''>" +
                        "<table border ='5'>" +
                        "<tr>" +
                        "<th colspan='5'>" +
                        id +
                        ", you currently have 01 account available for stock transactions</th>" +
                        "</tr>" +
                        "<tr>" +
                        "<th>Checking</th>" +
                        "<th>$" +
                        // balance +
                        "</th>" +
                        "<th><input type='submit' value='Delete'/></th>" +
                        "<tr>" +
                        "<th colspan='3' style='text-align:right'><a href='AddBank'>[Add Account]</a><a href='categories.jsp'>[Categories]</a><a href='index.jsp'>[Log Out]</a></th>" +
                        "</tr>" +
                        "</table></form>");
            out.println("</body>");
            out.println("</html>");

         finally  
            out.close();
        
     

    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /** 
     * Handles the HTTP <code>GET</code> method.
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException 
        processRequest(request, response);
     

    /** 
     * Handles the HTTP <code>POST</code> method.
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException 
        processRequest(request, response);
    

    /** 
     * Returns a short description of the servlet.
     * @return a String containing servlet description
     */
    @Override
    public String getServletInfo() 
        return "Short description";
    // </editor-fold>


【问题讨论】:

请详细说明您面临的实际问题。发生什么了?不会发生什么?你得到什么错误/异常?就是代码错误太多,我不知道从哪里开始根据代码回答。 【参考方案1】:

不是你这样做的方式,

创建一个包含您要显示的字段的类

从 servlet 调用 DAO/service 并获取 List 并使用 &lt;c:forEach&gt; ,&lt;c:out/&gt; 在 jsp 上呈现它们

另见

MVC Design pattern Our Servlet Wiki page

【讨论】:

我有一个 Bean(model) 一个 Servlet(view) 和一个 DAO(controller) 是不是没有使用 MVC 设计? 没有。 servlet 是控制器,JSP 是视图。您没有 JSP。 DAO 是不同架构的一部分。 好吧,不管出于什么原因,我的导师都不希望我们在这个作业中使用 JSP。对我的问题有什么想法吗?感谢您的帮助。 好吧。这是标准的方式,我不会提倡你跟随你的导师。

以上是关于如何在 servlet 中调用 DAO 方法来提取查询结果的主要内容,如果未能解决你的问题,请参考以下文章

在servlet中调用Dao包中的

在 Servlet 上调用 DAO 方法

java web servlet 调用 dao层方法 总出错 !!!!新手求解,多谢!!!

servlet一调用dao就报错?啥毛病?jsp正常调用

MVC模式中控制器(servlet)接收请求参数、调用DAO、保存处理结果、改变路径并转发(响应)

怎么在service中调用activity中的handler