为什么在NetBeans中,我的代码没报错,允许后查询所有查询不到MySQL的数据?求大佬指教指教!

<%@page contentType="textcml" pageEncoding="UTF-8"%>
<%@page import="java.util.ArrayList"%>
<%@page import="List.ComInList"%>

JSP Page

竞赛信息表

</from>
    <hr>
    <%
       ArrayList<ComInList> peos = (ArrayList<ComInList>)request.getAttribute("allpeos");
    %>
    <table border="1">
        <tr>
            <td>竞赛编号</td>
            <td>竞赛名称</td>
            <td>竞赛举行日期</td>
            <td>竞赛举办单位</td>
            <td>竞赛所属级别</td>
            <td>竞赛联系人</td>
            
        </tr>
        <%
           if(peos != null)
               for(ComInList peo : peos){
        %>
        <tr>
            <td><%=peo.getConid() %></td>
            <td><%=peo.getConname() %></td>
            <td><%=peo.getCondate() %></td>
            <td><%=peo.getCondarpart() %></td>
            <td><%=peo.getConleverl() %></td>
            <td><%=peo.getConlink() %></td>            
        </tr>
        <%
        }
        %>
        </table>
</body>

<cml>

img

img

img

后台debug跟踪一下,看看是否有报错的信息。