所以我有一个MySQL数据库,我在WebLogic的本地实例上有一个连接到该数据库的数据源。我正在尝试编写一些只需连接和查询的客户端代码。我在从数据源获取连接时遇到问题。到目前为止,这是我的代码。我正在运行WebLogic 12c。
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Hashtable;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.sql.DataSource;
public class ConnectionTest {
public static void main(String... args) {
ConnectionTest tCon = new ConnectionTest();
tCon.TestConnection();
}
public void TestConnection() {
Context ctx = null;
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
Hashtable<String, String> props = new Hashtable<String, String>();
props.put("java.naming.factory.initial",
"weblogic.jndi.WLInitialContextFactory");
props.put("java.naming.provider.url", "t3://localhost:7001");
props.put("java.naming.security.principal", "weblogic");
props.put("java.naming.security.credentials", "welcome1");
ctx = new InitialContext(props);
DataSource ds = (DataSource) ctx.lookup("RegexDB");
System.out.println(ds);
DAO dao = new DAO();
conn = ds.getConnection();
stmt = conn.createStatement();
stmt.execute("select * from regular_ex");
rs = stmt.getResultSet();
ArrayList<HashMap<String, Object>> results = dao
.resultSetToArrayList(rs);
dao.printArrayList(results);
stmt.close();
conn.close();
} catch (NamingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (stmt != null)
stmt.close();
if (conn != null)
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
这在ds.getConnection()
失败,但有以下异常:
java.lang.ClassCastException: weblogic.jdbc.common.internal.ConnectionEnv cannot be cast to java.io.Serializable
at weblogic.iiop.IIOPOutputStream.writeObject(IIOPOutputStream.java:2285)
at weblogic.utils.io.ObjectStreamClass.writeFields(ObjectStreamClass.java:414)
at weblogic.corba.utils.ValueHandlerImpl.writeValueData(ValueHandlerImpl.java:235)
at weblogic.corba.utils.ValueHandlerImpl.writeValueData(ValueHandlerImpl.java:225)
at weblogic.corba.utils.ValueHandlerImpl.writeValue(ValueHandlerImpl.java:182)
at weblogic.iiop.IIOPOutputStream.write_value(IIOPOutputStream.java:1983)
at weblogic.iiop.IIOPOutputStream.write_value(IIOPOutputStream.java:2021)
at weblogic.iiop.IIOPOutputStream.writeObject(IIOPOutputStream.java:2285)
at weblogic.jdbc.common.internal.RmiDataSource_WLSkel.invoke(Unknown Source)
at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:695)
at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:520)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:516)
at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
我的buildpath中有wlclient.jar,wlsafclient.jar和weblogic.jar。我已经尝试了添加/删除这些罐子的各种组合,但无论我做什么,我仍然会得到相同的错误。任何帮助将不胜感激。
答案 0 :(得分:4)
在做了一些研究之后,我正在删除旧答案并重新开始。
Oracle Doc for WebLogic Standalone Clients中有一个大型客户类型表。对于列出的每种类型的客户端,该表显示了所需的jar文件。对于某些类型的客户端,您需要构建一个额外的jar(wlfullclient.jar)并包含它。
希望这有帮助。
答案 1 :(得分:0)
我也遇到了这个问题,我尝试将“wlfullclient.jar”添加到我的目录中进行修复,但是我没有在weblogic安装文件夹中找到这个jar文件。
但是最后我通过使用setDomainEnv.cmd将所有必需的jar文件设置为weblogic,它工作正常。在这里,我们不必关心需要哪些jar文件,只需为您的程序设置所有必需的jar文件的类路径。
我使用的是Weblogic 11g。
答案 2 :(得分:0)
在Weblogic 12c中,将weblogic.jar文件复制到其他目录。将文件重命名为weblogic-classes.jar,然后使用wljarbuilder构建jar文件。
将新创建的wlfullclient.jar文件添加到eclipse中的Class Path。
答案 3 :(得分:0)
构建wlfullclient.jar并将此jar添加到构建路径中。 它解决了我的问题。 顺便说一下,与Weblogic 10.3中的weblogic.jar相比,来自Weblogic 12的weblogic.jar缺少一些类