配置weblogic的类路径去吧,你的类是在weblogic下运行的,他的类路径没有数据库驱动。

解决方案 »

  1.   

    你要把数据库的驱动程序放到weblogic的lib目录下一份,同时你要配置weblogic的jdbc数据库源。
      

  2.   

    我在WebLogic Console中配置了一个JDBC Connection pool,配置如下:
    Name:forum;
    Url:jdbc:microsoft:sqlserver://192.168.0.205:1433;databaseName=forum;User=sa;Password=
    Driver Classname:com.microsoft.jdbc.sqlserver.SQLServerDriver
    Targets-Server:我的机器名然后配置了一个DataSource,配置如下:
    Name:forum
    Pool Name:forum
    Targets-Server:我的机器名。配置好电脑重启,运行jsp也是一样出错,数据库驱动我已经放到weblogic的lib目录下了。是不是我的配置有错,请大侠指点。
      

  3.   

    cypeng(追命) :请问如何设置WebLogic的类路径
      

  4.   

    将类文件放进WL_HOME下的LIB路径下,然后在startWeblogic.cmd中有一个位置,如:
    classpath=......;
    在这后面加上你放的位置,如:%WL_HOME%/lib/xxx.jar;然后重启WEBLOGIC,应该可以搞定
      

  5.   

    考给你一个样板文件,自己照着做吧:
    @echo off@rem This script can be used to start WebLogic Server. This script ensures that
    @rem the server is started using the config.xml file found in this directory and
    @rem that the CLASSPATH is set correctly. This script contains the following variables:
    @rem
    @rem JAVA_HOME      - Determines the version of Java used to start
    @rem                  WebLogic Server. This variable must point to the
    @rem                  root directory of a JDK installation and will be set
    @rem                  for you by the WebLogic Server installer. Note that
    @rem                  this script uses the hotspot VM to run WebLogic Server.
    @rem                  If you choose to use a JDK other than the one
    @rem                  included in the disribution, make sure that the JDK
    @rem                  includes the hotspot VM. See the WebLogic platform support
    @rem                  page (http://e-docs.bea.com/wls/platforms/index.html)
    @rem                  for an up-to-date list of supported JVMs on Windows NT.
    @rem
    @rem When setting these variables below, please use short file names (8.3).
    @rem To display short (MS-DOS) filenames, use "dir /x". File names with
    @rem spaces will break this script.
    @rem
    @rem jDriver for Oracle users: This script assumes that native libraries
    @rem required for jDriver for Oracle have been installed in the proper
    @rem location and that your system PATH variable has been set appropriately.
    @rem For additional information, refer to Installing and Setting up WebLogic
    @rem Server (http://e-docs.bea.com/wls/docs61/install/index.html).SETLOCALcd ..\..@rem Set user-defined variables.
    set JAVA_HOME=C:\bea\jdk131
    set TOPTAIS_HOME=D:\Projects\TopTais
    set JFOUNDATION_HOME=D:\Projects\jfoundation
    set WL_HOME=C:\bea\wlserver6.1@rem Check that script is being run from the appropriate directory
    if not exist lib\weblogic.jar goto wrongplace
    goto checkJDK
    :wrongplace
    echo startWebLogic.cmd must be run from the config\mydomain directory. 1>&2
    goto finish:checkJDK
    if exist "%JAVA_HOME%/bin/javac.exe" goto runWebLogic
    echo.
    echo Javac wasn't found in directory %JAVA_HOME%/bin.
    echo Please edit the startWebLogic.cmd script so that the JAVA_HOME
    echo variable points to the root directory of your JDK installation.
    goto finish:runWebLogic
    echo on
    set PATH=.\bin;%PATH%set CLASSPATH=.;.\lib\weblogic_sp.jar;.\lib\weblogic.jar;.\lib\classes12.zip;%JFOUNDATION_HOME%\lib\log4j-1.2.5.jar;%JFOUNDATION_HOME%\lib\crimson.jar;%JFOUNDATION_HOME%\lib\jaxp.jar;%JFOUNDATION_HOME%\lib\EdenLib.jar;%JFOUNDATION_HOME%\lib\obecore.jar;%JFOUNDATION_HOME%\lib\obeengine.jar;%JFOUNDATION_HOME%\lib\dom4j-full.jar;%JFOUNDATION_HOME%\lib\jython.jar;%JFOUNDATION_HOME%\lib\FormProc.jar;%JFOUNDATION_HOME%\lib\jakarta-oro-2.0.6.jar;%TOPTAIS_HOME%\lib\toptais-common.jar;%TOPTAIS_HOME%\lib\scheduler.jar;%TOPTAIS_HOME%\lib\toptais-nss.jar;%TOPTAIS_HOME%\resourcesecho offecho.
    echo ***************************************************
    echo *  To start WebLogic Server, use the password     *
    echo *  assigned to the system user.  The system       *
    echo *  username and password must also be used to     *
    echo *  access the WebLogic Server console from a web  *
    echo *  browser.                                       *
    echo ***************************************************@rem Set WLS_PW equal to your system password for no password prompt server startup.
    set WLS_PW=weblogic@rem Set Production Mode.  When set to true, the server starts up in production mode.  When
    @rem set to false, the server starts up in development mode.  The default is false.
    set STARTMODE=falseecho on
    "%JAVA_HOME%\bin\java" -hotspot -ms64m -mx64m -classpath %CLASSPATH% "-Dlogger.config=D:\Projects\TopTais\resources\toptaislog.properties" "-Dtoptais.config=D:\Projects\TopTais\resources\toptais.properties" -Dweblogic.Domain=mydomain -Dweblogic.Name=myserver "-Dbea.home=C:\bea" -Dweblogic.management.password=%WLS_PW% -Dweblogic.ProductionModeEnabled=%STARTMODE% "-Djava.security.policy==C:\bea\wlserver6.1/lib/weblogic.policy" weblogic.Server
    goto finish
    :finish
    cd config\mydomain
    ENDLOCAL主要是classpath设置的那个地方。
    我用的是oracle,所以设为了.\lib\classes12.zip,你可以把它改为sql server的驱动包。