Avatar billede axe Nybegynder
14. januar 2007 - 21:42 Der er 8 kommentarer og
1 løsning

Cannot create resource instance

Cannot create resource instance får denne fejl besked når jeg kører min Servlet

servlet--------------------
package test;
import java.io.IOException;
import javax.servlet.ServletException;

import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;
import javax.naming.InitialContext;
import javax.sql.DataSource;

/**
* @version     1.0
* @author
*/
public class Test2 extends HttpServlet {

    /**
    * @see javax.servlet.http.HttpServlet#void (javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    */
    public void doGet(HttpServletRequest req, HttpServletResponse resp)
        throws ServletException, IOException {

        super.doGet(req, resp);

    }

    /**
    * @see javax.servlet.http.HttpServlet#void (javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    */
    public void doPost(HttpServletRequest req, HttpServletResponse resp)
        throws ServletException, IOException {

        super.doPost(req, resp);

    }

    /**
    * @see javax.servlet.GenericServlet#void ()
    */
    public void init() throws ServletException {
        try {
            /*
            * Create a JNDI Initial context to be able to
            * lookup the DataSource
            **
            In production-level code, this should be cached as
            * an instance or static variable, as it can
            * be quite expensive to create a JNDI context.
            **
            Note: This code only works when you are using servlets
            * or EJBs in a J2EE application server. If you are
            * using connection pooling in standalone Java code, you
            * will have to create/configure datasources using whatever
            * mechanisms your particular connection pooling library
            * provides.
            */
            InitialContext ctx = new InitialContext();

            /*
            * Lookup the DataSource, which will be backed by a pool
            * that the application server provides. DataSource instances
            * are also a good candidate for caching as an instance
            * variable, as JNDI lookups can be expensive as well.
            */
            DataSource ds =
                (DataSource) ctx.lookup("java:comp/env/jdbc/MySQLDB");
            /*
            * The following code is what would actually be in your
            * Servlet, JSP or EJB 'service' method...where you need
            * to work with a JDBC connection.
            */
            Connection conn = null;
            Statement stmt = null;
            try {
                conn = ds.getConnection();
                /*
                * Now, use normal JDBC programming to work with
                * MySQL, making sure to close each resource when you're
                * finished with it, which allows the connection pool
                * resources to be recovered as quickly as possible
                */
                stmt = conn.createStatement();
                stmt.execute("select * from users");
                stmt.close();
                stmt = null;
                conn.close();
                conn = null;
            } finally {
                /*
                * close any jdbc instances here that weren't
                * explicitly closed during normal code path, so
                * that we don't 'leak' resources...
                */

                if (stmt != null) {
                    try {
                        stmt.close();
                    } catch (Exception sqlex) {
                        // ignore -- as we can't do anything about it here
                    }
                    stmt = null;
                }
                if (conn != null) {
                    try {
                        conn.close();
                    } catch (Exception sqlex) {
                        // ignore -- as we can't do anything about it here
                    }
                    conn = null;
                }
            }
        } catch (Exception e) {
            System.err.println("fejl besked"+e.getMessage());

        }
    }

}
web-xml-------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app id="WebApp">
    <display-name>test4</display-name>
    <description>MySQL Test App</description>
    <servlet>
        <servlet-name>Test2</servlet-name>
        <display-name>Test2</display-name>
        <servlet-class>test.Test2</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
   
    <resource-ref>
        <description>DB Connection</description>
        <res-ref-name>jdbc/MySQLDB</res-ref-name>
        <res-type>javax.sql.DataSource</res-type>
        <res-auth>Container</res-auth>
    </resource-ref>

</web-app>

server.xml-------------------------------------------
<?xml version="1.0" encoding="ISO-8859-1"?>

<!-- Example Server Configuration File -->
<!-- Note that component elements are nested corresponding to their
-->
<!-- A "Server" is a singleton element that represents the entire JVM,
    which may contain one or more "Service" instances.  The Server
    listens for a shutdown command on the indicated port.
   
    Note:  A "Server" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
-->
<Server debug="0" name="Tomcat v4.0 Server Configuration" port="8005" shutdown="SHUTDOWN">


    <!-- A "Service" is a collection of one or more "Connectors" that share
        a single "Container" (and therefore the web applications visible
        within that Container).  Normally, that Container is an "Engine",
        but this is not required.
       
        Note:  A "Service" is not itself a "Container", so you may not
        define subcomponents such as "Valves" or "Loggers" at this level.
    -->

    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">

        <!-- A "Connector" represents an endpoint by which requests are received
            and responses are returned.  Each Connector passes requests on to the
            associated "Container" (normally an Engine) for processing.
           
            By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
            You can also enable an SSL HTTP/1.1 Connector on port 8443 by
            following the instructions below and uncommenting the second Connector
            entry.  SSL support requires the following steps:
            * Download and install JSSE 1.0.2 or later, and put the JAR files
            into "$JAVA_HOME/jre/lib/ext".
            * Edit "$JAVA_HOME/jre/lib/security/java.security" and add
            security.provider.2=com.sun.net.ssl.internal.ssl.Provider
            * Execute: keytool -genkey -alias tomcat -keyalg RSA
            with a password value of "changeit".
           
            By default, DNS lookups are enabled when a web application calls
            request.getRemoteHost().  This can have an adverse impact on
            performance, so you can disable it by setting the
            "enableLookups" attribute to "false".  When DNS lookups are disabled,
            request.getRemoteHost() will return the String version of the
            IP address of the remote client.
        -->

        <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
        <Connector acceptCount="10" className="org.apache.catalina.connector.http.HttpConnector" connectionTimeout="60000" debug="0" enableLookups="true" maxProcessors="75" minProcessors="5" port="8080" redirectPort="8443" />
        <!-- Note : To disable connection timeouts, set connectionTimeout value
        -->

        <!-- Define an SSL HTTP/1.1 Connector on port 8443 -->
        <!--
            <Connector className="org.apache.catalina.connector.http.HttpConnector"
            port="8443" minProcessors="5" maxProcessors="75"
            enableLookups="true"
            acceptCount="10" debug="0" scheme="https" secure="true">
            <Factory className="org.apache.catalina.net.SSLServerSocketFactory"
            clientAuth="false" protocol="TLS"/>
            </Connector>
        -->

        <!-- Define a Proxied HTTP/1.1 Connector on port 8081 -->
        <!-- See proxy documentation for more information about using this. -->
        <!--
            <Connector className="org.apache.catalina.connector.http.HttpConnector"
            port="8081" minProcessors="5" maxProcessors="75"
            enableLookups="true"
            acceptCount="10" debug="0" connectionTimeout="60000"
            proxyPort="80"/>
        -->

        <!-- Define a non-SSL HTTP/1.0 Test Connector on port 8082 -->
        <!--
            <Connector className="org.apache.catalina.connector.http10.HttpConnector"
            port="8082" minProcessors="5" maxProcessors="75"
            enableLookups="true" redirectPort="8443"
            acceptCount="10" debug="0"/>
        -->

        <!-- An Engine represents the entry point (within Catalina) that processes
            every request.  The Engine implementation for Tomcat stand alone
            analyzes the HTTP headers included with the request, and passes them
        -->

        <!-- Define the top level container in our container hierarchy -->
        <Engine debug="0" defaultHost="localhost" name="Standalone">

            <!-- The request dumper valve dumps useful debugging information about
                the request headers and cookies that were received, and the response
                headers and cookies that were sent, for all requests received by
                this instance of Tomcat.  If you care only about requests to a
                particular virtual host, or a particular application, nest this
                element inside the corresponding <Host> or <Context> entry instead.
               
                For a similar mechanism that is portable to all Servlet 2.3
                containers, check out the "RequestDumperFilter" Filter in the
                example application (the source for this filter may be found in
                "$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").
               
                Request dumping is disabled by default.  Uncomment the following
            -->
            <!--
                <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
            -->

            <!-- Global logger unless overridden at lower levels -->
            <Logger className="org.apache.catalina.logger.FileLogger" prefix="catalina_log." suffix=".txt" timestamp="true" />

            <!-- Because this Realm is here, an instance will be shared globally -->

            <Realm className="org.apache.catalina.realm.MemoryRealm" />

            <!-- Replace the above Realm with one of the following to get a Realm
            -->

            <!--
                <Realm  className="org.apache.catalina.realm.JDBCRealm" debug="99"
                driverName="org.gjt.mm.mysql.Driver"
                connectionURL="jdbc:mysql://localhost/authority?user=test;password=test"
                userTable="users" userNameCol="user_name" userCredCol="user_pass"
                userRoleTable="user_roles" roleNameCol="role_name" />
            -->

            <!--
                <Realm  className="org.apache.catalina.realm.JDBCRealm" debug="99"
                driverName="oracle.jdbc.driver.OracleDriver"
                connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL?user=scott;password=tiger"
                userTable="users" userNameCol="user_name" userCredCol="user_pass"
                userRoleTable="user_roles" roleNameCol="role_name" />
            -->

            <!--
                <Realm  className="org.apache.catalina.realm.JDBCRealm" debug="99"
                driverName="sun.jdbc.odbc.JdbcOdbcDriver"
                connectionURL="jdbc:odbc:CATALINA"
                userTable="users" userNameCol="user_name" userCredCol="user_pass"
                userRoleTable="user_roles" roleNameCol="role_name" />
            -->

            <!-- Define the default virtual host -->
            <Host appBase="webapps" debug="0" name="localhost" unpackWARs="true">

                <!-- Normally, users must authenticate themselves to each web app
                    individually.  Uncomment the following entry if you would like
                    a user to be authenticated the first time they encounter a
                    resource protected by a security constraint, and then have that
                    user identity maintained across *all* web applications contained
                -->
                <!--
                    <Valve className="org.apache.catalina.authenticator.SingleSignOn"
                    debug="0"/>
                -->

                <!-- Access log processes all requests for this virtual host.  By
                    default, log files are created in the "logs" directory relative to
                    $CATALINA_HOME.  If you wish, you can specify a different
                    directory with the "directory" attribute.  Specify either a relative
                    (to $CATALINA_HOME) or absolute path to the desired directory.
                -->
                <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="common" prefix="localhost_access_log." suffix=".txt" />

                <!-- Logger shared by all Contexts related to this virtual host.  By
                    default (when using FileLogger), log files are created in the "logs"
                    directory relative to $CATALINA_HOME.  If you wish, you can specify
                    a different directory with the "directory" attribute.  Specify either a
                    relative (to $CATALINA_HOME) or absolute path to the desired
                -->
                <Logger className="org.apache.catalina.logger.FileLogger" directory="logs" prefix="localhost_log." suffix=".txt" timestamp="true" />

                <!-- Define properties for each web application.  This is only needed
                    if you want to set non-default properties, or have web application
                    document roots in places other than the virtual host's appBase
                -->

                <!-- Tomcat Root Context -->
                <!--
                    <Context path="" docBase="ROOT" debug="0"/>
                -->

                <!-- Tomcat Examples Context -->
                <Context debug="0" docBase="examples" path="/examples" reloadable="true">
                    <Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_examples_log." suffix=".txt" timestamp="true" />
                    <Ejb home="com.wombat.empl.EmployeeRecordHome" name="ejb/EmplRecord" remote="com.wombat.empl.EmployeeRecord" type="Entity" />
                    <!-- PersistentManager: Uncomment the section below to test Persistent
                        Sessions.
                       
                        saveOnRestart: If true, all active sessions will be saved
                        to the Store when Catalina is shutdown, regardless of
                        other settings. All Sessions found in the Store will be
                        loaded on startup. Sessions past their expiration are
                        ignored in both cases.
                        maxActiveSessions: If 0 or greater, having too many active
                        sessions will result in some being swapped out. minIdleSwap
                        limits this. -1 means unlimited sessions are allowed.
                        0 means sessions will almost always be swapped out after
                        use - this will be noticeably slow for your users.
                        minIdleSwap: Sessions must be idle for at least this long
                        (in seconds) before they will be swapped out due to
                        maxActiveSessions. This avoids thrashing when the site is
                        highly active. -1 or 0 means there is no minimum - sessions
                        can be swapped out at any time.
                        maxIdleSwap: Sessions will be swapped out if idle for this
                        long (in seconds). If minIdleSwap is higher, then it will
                        override this. This isn't exact: it is checked periodically.
                        -1 means sessions won't be swapped out for this reason,
                        although they may be swapped out for maxActiveSessions.
                        If set to >= 0, guarantees that all sessions found in the
                        Store will be loaded on startup.
                        maxIdleBackup: Sessions will be backed up (saved to the Store,
                        but left in active memory) if idle for this long (in seconds),
                        and all sessions found in the Store will be loaded on startup.
                        If set to -1 sessions will not be backed up, 0 means they
                        should be backed up shortly after being used.
                       
                        To clear sessions from the Store, set maxActiveSessions, maxIdleSwap,
                        and minIdleBackup all to -1, saveOnRestart to false, then restart
                        Catalina.
                    -->
                    <!--
                        <Manager className="org.apache.catalina.session.PersistentManager"
                        debug="0"
                        saveOnRestart="true"
                        maxActiveSessions="-1"
                        minIdleSwap="-1"
                        maxIdleSwap="-1"
                        maxIdleBackup="-1">
                        <Store className="org.apache.catalina.session.FileStore"/>
                        </Manager>
                    -->
                    <Environment name="maxExemptions" type="java.lang.Integer" value="15" />
                    <Parameter name="context.param.name" override="false" value="context.param.value" />
                    <Resource auth="SERVLET" name="jdbc/EmployeeAppDb" type="javax.sql.DataSource" />
                    <ResourceParams name="jdbc/TestDB">
                        <parameter>
                            <name>user</name>
                            <value>sa</value>
                        </parameter>
                        <parameter>
                            <name>password</name>
                            <value />
                        </parameter>
                        <parameter>
                            <name>driverClassName</name>
                            <value>org.hsql.jdbcDriver</value>
                        </parameter>
                        <parameter>
                            <name>driverName</name>
                            <value>jdbc:HypersonicSQL:database</value>
                        </parameter>
                    </ResourceParams>
                    <Resource auth="Container" name="mail/Session" type="javax.mail.Session" />
                    <ResourceParams name="mail/session">
                        <parameter>
                            <name>mail.smtp.host</name>
                            <value>localhost</value>
                        </parameter>
                    </ResourceParams>
                </Context>

                <Context docBase="C:\Documents and Settings\mig\Dokumenter\IBM\wsad\workspace\test4\Web Content" path="/test4" reloadable="true" source="com.ibm.etools.webtools.server:test4" />
           

          <context path="/DBTest" docBase="DBTest" debug="5" reloadable="true" crossContext="true">


        <Resource name="jdbc/MySQLDB" auth="Container" type="javax.sql.DataSource" />
        <!-- The name you used above, must match _exactly_ here!
            The connection pool will be bound into JNDI with the name
            "java:/comp/env/jdbc/MySQLDB"
        -->
        <ResourceParams name="jdbc/x">
            <parameter>
                <name>factory</name>
                <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
            </parameter>
            <!-- Don't set this any higher than max_connections on your
                MySQL server, usually this should be a 10 or a few 10's
            -->
            <parameter>
                <name>maxActive</name>
                <value>10</value>
            </parameter>
            <!-- You don't want to many idle connections hanging around
                if you can avoid it, only enough to soak up a spike in
            -->
            <parameter>
                <name>maxIdle</name>
                <value>5</value>
            </parameter>
            <!-- Don't use autoReconnect=true, it's going away eventually
                and it's a crutch for older connection pools that couldn't
                test connections. You need to decide whether your application is
                supposed to deal with SQLExceptions (hint, it should), and
                how much of a performance penalty you're willing to pay
            -->
            <parameter>
                <name>validationQuery</name>
                <value>SELECT 1</value>
            </parameter>
            <!-- The most conservative approach is to test connections
                before they're given to your application. For most applications
                this is okay, the query used above is very small and takes
                no real server resources to process, other than the time used
                to traverse the network.
                If you have a high-load application you'll need to rely on
            -->
            <parameter>
                <name>testOnBorrow</name>
                <value>true</value>
            </parameter>
            <!-- Otherwise, or in addition to testOnBorrow, you can test
            -->
            <parameter>
                <name>testWhileIdle</name>
                <value>true</value>
            </parameter>
            <!-- You have to set this value, otherwise even though
                you've asked connections to be tested while idle,
            -->
            <parameter>
                <name>timeBetweenEvictionRunsMillis</name>
                <value>10000</value>
            </parameter>
            <!-- Don't allow connections to hang out idle too long,
                never longer than what wait_timeout is set to on the
                server...A few minutes or even fraction of a minute
                MySQL Connector/J
                36
                is sometimes okay here, it depends on your application
            -->
            <parameter>
                <name>minEvictableIdleTimeMillis</name>
                <value>60000</value>
            </parameter>
            <!-- Username and password used when connecting to MySQL -->
            <parameter>
                <name>username</name>
                <value>root</value>
            </parameter>
            <parameter>
                <name>password</name>
                <value>crazy</value>
            </parameter>
            <!-- Class name for the Connector/J driver -->
            <parameter>
                <name>driverClassName</name>
                <value>com.mysql.jdbc.Driver</value>
            </parameter>
            <!-- The JDBC connection url for connecting to MySQL, notice
                that if you want to pass any other MySQL-specific parameters
                you should pass them here in the URL, setting them using the
                parameter tags above will have no effect, you will also
                need to use &amp; to separate parameter values as the
            -->
            <parameter>
                <name>url</name>
                <value>jdbc:mysql://localhost:3306/x</value>
            </parameter>
        </ResourceParams>
    </context>
                       
                        </Host>

        </Engine>

    </Service>

    <!-- The MOD_WEBAPP connector is used to connect Apache 1.3 with Tomcat 4.0
        as its servlet container. Please read the README.txt file coming with
        the WebApp Module distribution on how to build it.
        (Or check out the "jakarta-tomcat-connectors/webapp" CVS repository)
       
        To configure the Apache side, you must ensure that you have the
        "ServerName" and "Port" directives defined in "httpd.conf".  Then,
        lines like these to the bottom of your "httpd.conf" file:
       
        LoadModule webapp_module libexec/mod_webapp.so
        WebAppConnection warpConnection warp localhost:8008
        WebAppDeploy examples warpConnection /examples/
       
        The next time you restart Apache (after restarting Tomcat, if needed)
        the connection will be established, and all applications you make
        visible via "WebAppDeploy" directives can be accessed through Apache.
    -->

    <!-- Define an Apache-Connector Service -->
    <Service name="Tomcat-Apache">

        <Connector acceptCount="10" className="org.apache.catalina.connector.warp.WarpConnector" debug="0" enableLookups="true" maxProcessors="75" minProcessors="5" port="8008" />

        <!-- Replace "localhost" with what your Apache "ServerName" is set to -->
        <Engine appBase="webapps" className="org.apache.catalina.connector.warp.WarpEngine" debug="0" name="Apache">

            <!-- Global logger unless overridden at lower levels -->
            <Logger className="org.apache.catalina.logger.FileLogger" prefix="apache_log." suffix=".txt" timestamp="true" />

            <!-- Because this Realm is here, an instance will be shared globally -->
            <Realm className="org.apache.catalina.realm.MemoryRealm" />

        </Engine>

    </Service>
   
</Server>

hvor ligger fejlen
Avatar billede axe Nybegynder
14. januar 2007 - 22:01 #1
så er denne her rettet
    <ResourceParams name="jdbc/MySQLDB">
men får stadigt samme fejlbesked
Avatar billede axe Nybegynder
14. januar 2007 - 22:27 #2
jeg kører tomcat ver 4.1
Avatar billede arne_v Ekspert
14. januar 2007 - 22:27 #3
hvad er den komplette fejl besked ?

har du smidt jar filen med MySQL JDBC driveren det rigtige sted ?
Avatar billede axe Nybegynder
14. januar 2007 - 23:05 #4
jeg har smidt jar filen ned i common\libs
Avatar billede axe Nybegynder
14. januar 2007 - 23:07 #5
create resource instance
javax.naming.NamingException: Cannot create resource instance
    at org.apache.naming.factory.ResourceFactory.getObjectInstance(ResourceFactory.java:189)
    at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:301)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:834)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:181)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:822)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:181)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:822)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:181)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:822)
    at org.apache.naming.NamingContext.lookup(NamingContext.java:194)
    at org.apache.naming.SelectorContext.lookup(SelectorContext.java:183)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at test.Test2.init(Test2.java:69)
    at javax.servlet.GenericServlet.init(GenericServlet.java:256)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:935)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:823)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3420)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3608)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1188)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:738)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1188)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:347)
    at org.apache.catalina.core.StandardService.start(StandardService.java:497)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:2190)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:512)
    at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
    at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
Starting service Tomcat-Apache
Apache Tomcat/4.1.24-LE-jdk14

e.printStackTrace()
Avatar billede axe Nybegynder
15. januar 2007 - 17:38 #6
Jeg har opdaget at jeg mangler følgende komponenter på serveren
Jakarta-Commons DBCP 1.0
Jakarta-Commons Pool 1.0

Kan jeg godt hente nyere versioner ned og hvor skal de placeres i common
Avatar billede axe Nybegynder
15. januar 2007 - 17:46 #7
nu får jeg denne besked.

Cannot create JDBC driver of class '' for connect URL 'null'
org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'
    at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:780)
    at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:540)
    at test.Test2.init(Test2.java:79)
    at javax.servlet.GenericServlet.init(GenericServlet.java:256)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:935)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:823)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3420)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3608)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1188)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:738)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1188)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:347)
    at org.apache.catalina.core.StandardService.start(StandardService.java:497)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:2190)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:512)
    at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
    at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
Caused by: java.sql.SQLException: No suitable driver
    at java.sql.DriverManager.getDriver(DriverManager.java:243)
    at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:773)
    ... 21 more
Avatar billede axe Nybegynder
15. januar 2007 - 19:02 #8
database driveren er den nyeset mysql driver
Avatar billede axe Nybegynder
15. januar 2007 - 19:22 #9
svar
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Kurser inden for grundlæggende programmering

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester

IT-JOB

Politiets Efterretningstjeneste

Tester i PET's IT-afdeling

Capgemini Danmark A/S

Management Consultant

Forsvarsministeriets Regnskabsstyrelse

Datadesigner