大二下学期学习进度(十六)

Posted zjl-0217

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大二下学期学习进度(十六)相关的知识,希望对你有一定的参考价值。

编程时长:14h

代码行数:760行

发表博客篇数:3

所学知识点:

1.之前做WEB项目的时候显示内容一直用的当初学长的代码思路,将实体放进LIST集合,存进session,在JSP页面中用foreach来循环遍历出来,但是由于调整TOMCAT将jstl包搞坏,严重: Servlet.service() for servlet [jsp] in context with path [/图书管理系统] threw exception [The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application] with root cause
org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application一直出现这样的报错,查询百度了很长一段时间还未解决,于是通过结对开发我学到一个新的显示内容的方法,

public ResultSet getAllRs()
   		String sql="SELECT * from photo1 ORDER BY xuhao desc";
   		Connection conn = db.getConn();
   		ResultSet rs = null;
   		try
			 Statement state = conn.createStatement();
			 rs=state.executeQuery(sql);
		
		catch(SQLException e)
			e.printStackTrace();
			
		return rs;
	

  通过返回一个ResulSet结果集,在jsp页面直接输出结果

 <%
      
        ResultSet rs=dao.getAllRs();
        if(rs==null)
      %>
      <tr align="center" valign="middle"><td colspan="4">没有记录显示!</td>
      </tr>
      <%
        
        else
        	 if(rs.next())
      %>
      <tr align="center" valign="middle" height="22">
        <td>222222</td>  	
        <td><%=rs.getString("id") %></td>  		 
        <td><img src="upload\<%=rs.getString("name") %>" width="150px";height="100px"></td>                 	
      </tr>
      <%
        	
        	 

 

 

以上是关于大二下学期学习进度(十六)的主要内容,如果未能解决你的问题,请参考以下文章

大二上学期软件工程概论学习进度表(第十一周)

阅读计划(大二下学期)

大二下小结与暑假展望

大二下学期——期末总结

大二下学期加分项目

大二下学期加分项目