首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

大家看看小弟我的数据源配置哪里有异常

2012-01-15 
大家看看我的数据源配置哪里有错误我的项目目录D:\DBTEST|---WEB-INF||--web.xml|--dbtest.jsp1.在%tomcat

大家看看我的数据源配置哪里有错误
我的项目目录
D:\DBTEST
      |---WEB-INF
      |           |--web.xml
      |--dbtest.jsp

1.在%tomcat_home%\common\lib下拷贝了oracle的数据包classes12.jar
2.安装了oracle10g,端口号1158,数据库名orcl
3.conf/server.xml配置如下:
<Context   path= "/test "       docBase= "D:\dbtest "  
    debug= "1 "   reloadable= "true "   crossContext= "true ">
<Resource   name= "jdbc/orcl "  
                    auth= "Container "  
                    type= "javax.sql.DataSource "/>
        <ResourceParams   name= "jdbc/orcl ">
        <parameter>
<name> factory </name>
<value> org.apache.commons.dbcp.BasicDataSourceFactory </value>
        </parameter>
      <parameter>
<name> driverClassName </name>
<value> oracle.jdbc.driver.OracleDriver </value>
      </parameter>
      <parameter>
<name> url </name>
<value> jdbc:oracle:thin:@localhost:1158:ORCL </value>
      </parameter>
      <parameter>
  <name> username </name>
  <value> teacher </value>
      </parameter>
      <parameter>
  <name> password </name>
<value> teacher </value>
        ..其他参数略..
      </ResourceParams>
</Context>
4.web.xml配置如下:
  <resource-ref>
    <description> 数据源 </description>
    <res-ref-name> jdbc/orcl </res-ref-name>
    <res-type> javax.sql.DataSource </res-type>
    <res-auth> Container </res-auth>
  </resource-ref>
5.dbtest.jsp代码如下:
<%@   page   language= "java "   contentType= "text/html;charset=gb2312 "%>
<%@   page   import= "javax.naming.* "   %>
<%@   page   import= "java.sql.* "   %>
<%@   page   import= "javax.sql.* "   %>
<html>
<head>
<meta   http-equiv= "Content-Type "   content= "text/html;   charset=ISO-8859-1 ">
<title> Insert   title   here </title>
</head>
<body>
<%  
try
{
  Context   initCtx   =   new   InitialContext();
  Context   envCtx   =   (Context)initCtx.lookup( "java:comp/env ");
  DataSource   ds   =   (DataSource)envCtx.lookup( "jdbc/orcl ");
  Connection   con   =   ds.getConnection();
  Statement   stat   =   con.createStatement();
  ResultSet   rs   =   stat.executeQuery( "select   *   from   student ");
  while   (rs.next())
  {
    System.out.println(rs.getString(2));
    out.println(rs.getString(2));
  }


}
catch   (NamingException   e)
{
        System.err.println( "NameingException "+e);
}
catch   (SQLException   e)
{
System.err.println( "SOLException "+e);
}
%>
</body>
</html>
6.启动tomcat5.5   ,正常
7.启动IE,键入http://localhost/test/dbtest.jsp
窗口中无任何信息,
tomcat窗口中出现错误:
SOLExceptionorg.apache.tomcat.dbcp.dbcp.SQLNestedException:   Cannot   create   JDBC   driver   of   class   ' '   for   connect   URL   'null '


这是怎么回事,我哪里配置错了????

[解决办法]
数据源应该配到context.xml里把!

热点排行