解决配置appfuse后,tomcat5.0无法启动appfuse的服务,报错,无法连接mysql

我用的是Tomcat5.0, appfuse1.8, mysql.    服务启动后,用ant list查看tomcat服务时显示:
[list] /appfuse:stopped:0:D:/Program Files/Apache Software Foundation/Tomcat 5.0/webapps/appfuse

用ant start无法启动,查看日志,显示:
Cannot create JDBC driver of class '' for connect URL 'null', cause:

解决方法,在tomcat_home/conf/Catalina/localhost增加一新的文件appfuse.xml,内容如下:

<Context path="/appfuse" docBase="appfuse" debug="5" reloadable="true" crossContext="true">
  <Logger className="org.apache.catalina.logger.FileLogger"
             prefix="localhost_cheny_log." suffix=".txt"
             timestamp="true"/>

  <Resource name="jdbc/appfuse"
               auth="Container"
               type="javax.sql.DataSource"/>

  <ResourceParams name="jdbc/appfuse">
    <parameter>
      <name>factory</name>
      <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
    </parameter>

    <!-- Maximum number of dB connections in pool. Make sure you
         configure your mysqld max_connections large enough to handle
         all of your db connections. Set to 0 for no limit.
         -->
    <parameter>
      <name>maxActive</name>
      <value>100</value>
    </parameter>

    <!-- Maximum number of idle dB connections to retain in pool.
         Set to 0 for no limit.
         -->
    <parameter>
      <name>maxIdle</name>
      <value>30</value>
    </parameter>

    <!-- Maximum time to wait for a dB connection to become available
         in ms, in this example 10 seconds. An Exception is thrown if
         this timeout is exceeded.  Set to -1 to wait indefinitely.
         -->
    <parameter>
      <name>maxWait</name>
      <value>10000</value>
    </parameter>

    <!-- MySQL dB username and password for dB connections  -->
    <parameter>
     <name>username</name>
     <value>root</value>
    </parameter>
    <parameter>
     <name>password</name>
     <value>windows</value>
    </parameter>

    <!-- Class name for mm.mysql JDBC driver -->
    <parameter>
       <name>driverClassName</name>
       <value>org.gjt.mm.mysql.Driver</value>
    </parameter>

    <!-- The JDBC connection url for connecting to your MySQL dB.
         The autoReconnect=true argument to the url makes sure that the
         mm.mysql JDBC Driver will automatically reconnect if mysqld closed the
         connection.  mysqld by default closes idle connections after 8 hours.
         -->
    <parameter>
      <name>url</name>
      <value>jdbc:mysql://localhost:3306/appfuse?autoReconnect=true</value>
    </parameter>
  </ResourceParams>
</Context>

在Tomcat5.0中的server.xml一直无法看到Context标签,但在tomcat_home/conf/Catalina/localhost目录中能看到admin,banlancer,manager的配置文件,照葫芦画瓢,做了一个,配置了JNDI.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值