我想将数据从mysql加载到jsp,但出现无法处理的错误

时间:2018-06-30 07:27:01

标签: java mysql apache jsp

enter code here
  1. 这是Java代码,用于将数据从数据库加载到jsp

    包dao;

    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.ArrayList;
    
    import model.Category;
    import utils.DBConnect;
    
    public class CategoryDAO {
    
        public ArrayList<Category> getListCategory() throws SQLException {
            Connection connect = DBConnect.getConnection();
            ArrayList<Category> listCategory = new ArrayList<>();
            String sql = "SELECT * FROM category";
            PreparedStatement ps = connect.prepareCall(sql);
            ResultSet rs = ps.executeQuery();
    
            while (rs.next()) {
                Category category = new Category();
                category.setCategoryID(rs.getInt("CategoryID"));
                category.setCategoryName(rs.getString("CategoryName"));
                listCategory.add(category);
            }
    
            return listCategory;
        };
    
    }
    
  2. 这是显示数据的html文件,我是加载类别

     
    <ul class="drop">
                                 <%
                                    for (Category c : cateDao.getListCategory()) {
                                 %>
                                    <li><a href="product.jsp?category=<%=c.getCategoryID()%>"><%= c.getCategoryName() %></a></li>
                                 <% 
                                    } 
                                 %>
                                </ul>   
    

错误部分将发布在评论中

1 个答案:

答案 0 :(得分:0)

我不确定我的回答,但是... 方法connect.prepareCall从数据库中调用存储过程,因此,可能应该改为使用connect.prepareStatement。