JSP显示新闻
Posted chaserFF
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSP显示新闻相关的知识,希望对你有一定的参考价值。
一、建表并初始化数据
二、登陆
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显示新闻的主要内容,如果未能解决你的问题,请参考以下文章