码迷,mamicode.com
首页 > 其他好文 > 详细

给前台的下拉框赋值

时间:2015-10-21 19:30:35      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

List<LabelValueBean> list = equipScrapDAO.getScrapTypeList();

public List<LabelValueBean> getScrapTypeList() throws SQLException {
        List<LabelValueBean> list = new ArrayList<LabelValueBean>();
        String sql = "select SCRAP_TYPE,SCRAP_TYPE_NAME from SYS_Scrap_Type";
        Connection conn = null;
        PreparedStatement pstmt = null;
        ResultSet rs = null;
        try {
            conn = getConnection();
            pstmt = conn.prepareStatement(sql);
            rs = pstmt.executeQuery();
            while (rs.next()) {
                LabelValueBean bean = new LabelValueBean();
                bean.setValue(rs.getString("SCRAP_TYPE"));
                bean.setLabel(rs.getString("SCRAP_TYPE_NAME"));
                list.add(bean);
            }
        } finally {
            close(rs, pstmt, conn);
        }
        return list;
    }


给前台的下拉框赋值

标签:

原文地址:http://my.oschina.net/u/934148/blog/519981

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!