免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1963 | 回复: 1
打印 上一主题 下一主题

[Web] jsp标签连接数据库的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-06-25 15:49 |只看该作者 |倒序浏览
在jsp 中写个标签,这个标签GetVodLecture的主要功能是连接上数据库,然后将记录写出来,标签的具体内容如下 :
package com.tag;
import java.io.IOException;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import com.db.*;

import javax.servlet.jsp.tagext.BodyTagSupport;
import javax.servlet.jsp.*;

public class GetVodLecture extends BodyTagSupport{
   /**
         *
         */
   private static final long serialVersionUID = 1L;
   private String sqlstr="select * from vod";
   private DBConnectionManager connMgr;
   private Connection connection = null;
   private Statement s=null;
   private ResultSet rs = null;
   
  
   public void setSqlstr(String sqlstr){
           this.sqlstr = sqlstr;
   }
   public String getSqlstr(){
           return this.sqlstr;
   }
   public ResultSet GetResultSet(){
                  return rs;
          }
   
   public int doStartTag() throws JspException {
                 int ProcessBody = SKIP_BODY;
          
                 try {
                                pageContext.getOut().print("hello world");
                                pageContext.getOut().print(sqlstr);
                        } catch (IOException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                        }
                       
                 connMgr = DBConnectionManager.getInstance();
         connection = connMgr.getConnection(DBConnectionManager.DB_CON);
             if (connection == null) return ProcessBody;
                 try {
                        s = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
                        rs = s.executeQuery(sqlstr);
                } catch (SQLException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                }
           return ProcessBody;
        
        }
  
   public int doEndTag() throws JspException{
          
           try {
                if(rs == null) return EVAL_PAGE;
                else {
                while(rs.next())
                pageContext.getOut().println(rs.getString("lecturename"));}
        } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
        } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
        }
         connMgr.closeResultSet(rs);
         connMgr.closeStatement(s);
         connMgr.freeConnection(DBConnectionManager.DB_CON,connection);
         return  EVAL_PAGE;
   }
  

   public static void main(String[] args) {
           GetVodLecture getvodlec = new GetVodLecture();
           getvodlec.setSqlstr("select * from vod");
          
       
          try {
                System.out.println(getvodlec.doStartTag());
                ResultSet rs1 =getvodlec.GetResultSet();
                   if(rs1 == null){
                           System.out.println("无记录");
                   }
                 try {
                        while(rs1.next())
                        System.out.println(rs1.getString("lecturename"));
                } catch (SQLException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                }
        } catch (JspException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
        }
   }
  
}

  运行标签这个类的main()函数是可以连接上数据库,将数据库中的记录写出来的。
但是将标签用于jsp页面中就总是连接不上数据库,但我测试这个标签在jsp页面中确实是运行的,只不过运行到连接数据库的代码的时候就出现问题,连不上数据库。
请问这是怎么回事?我都找了一个星期了,也没发现问题在哪?

论坛徽章:
1
技术图书徽章
日期:2013-12-05 23:25:45
2 [报告]
发表于 2007-06-26 12:44 |只看该作者
不行的时候,具体是那一部分呢?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP