摘要:
一 首先在dao层写findall方法,返回值为要循环对象 的队列列表。查找出来所有的数据publicListfindall() throws Exception{List newsList=new ArrayList();try {conn=Dbinit.getConn();pstmt=conn.prepareStatement("select * from news");rs=pstmt.executeQuery();while (rs!=null && rs.next()) {News news=new News();//此处新建对象一定要放在循环里面 阅读全文
摘要:
一直用tomcat一段时间都正常无事,最近一次启动tomcat就发生以下异常:严重: IOException while loading persisted sessions: java.io.EOFException严重: Exception loading sessions from persistent storage原因是tomcat对硬盘的session读取失败,彻底解决办法一下:将work下面的文件清空,主要是*.ser文件,或者只是删除掉session.ser即可以解决。 阅读全文