码迷,mamicode.com
首页 > Web开发 > 详细

JSP显示新闻

时间:2020-06-15 13:46:40      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:tac   jsp   bsp   inf   for   效果   tps   next   from   

一、建表并初始化数据

技术图片

 

 

 二、登陆

2.1 登陆失败提示

技术图片

 

 

 技术图片

 

 

 2.2 登陆成功显示新闻列表

public class NewsMapperImpl implements NewsMapper {
    @Override
    public List<News> findAllNewsHref() {
        Connection conn = null;
        Statement statement = null;
        ResultSet rs = null;
        List<News> news = new ArrayList<>();
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        try {
            conn = DBUtil.getConnection();
            statement = conn.createStatement();

            String sql = "select * from news";
            rs = statement.executeQuery(sql);
            while (rs.next()) {
                News nw = new News(
                        rs.getInt(1),
                        rs.getString(2),
                        rs.getString(3),
                        rs.getString(4),
                        sdf.parse(rs.getString(5))
                );
                news.add(nw);
            }
        } catch (SQLException e) {
            e.printStackTrace();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (ParseException e) {
            e.printStackTrace();
        }

        return news;
    }
}

 

 2.2.1 service层

技术图片

 

 

 

 2.2.2 dao层:

 

2.2.3 controller层

技术图片

 

 

 2.2.4 jsp界面

技术图片

 

 

 效果:

技术图片

 

 码云地址:https://gitee.com/chaserff/J2EE.git

JSP显示新闻

标签:tac   jsp   bsp   inf   for   效果   tps   next   from   

原文地址:https://www.cnblogs.com/chaserFF/p/13130332.html

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