- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们在集群 QA 环境中遇到以下错误。我们在 linux 上运行 Weblogic 10.3.3.0。
####<Mar 29, 2011 3:59:54 PM CDT> <Error> <Cluster> <app2.qa.server.com> <qa_app2j> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <1301432394933> <BEA-000126> <All session objects should be serializable to replicate. Check the objects in your session. Failed to replicate non-serializable object.
java.rmi.MarshalException: failed to marshal update(Lweblogic.cluster.replication.ROID;ILjava.io.Serializable;Ljava.lang.Object;); nested exception is:
java.io.NotSerializableException: com.tjf.admin.virtualFair.Job$1
at weblogic.rjvm.BasicOutboundRequest.marshalArgs(BasicOutboundRequest.java:92)
at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:221)
at weblogic.cluster.replication.ReplicationManager_1033_WLStub.update(Unknown Source)
at sun.reflect.GeneratedMethodAccessor15419.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at weblogic.cluster.replication.SecureReplicationInvocationHandler$ReplicationServicesInvocationAction.run(SecureReplicationInvocationHandler.java:184)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.cluster.replication.SecureReplicationInvocationHandler.invoke(SecureReplicationInvocationHandler.java:154)
at $Proxy98.update(Unknown Source)
at weblogic.cluster.replication.ReplicationManager.updateSecondary(ReplicationManager.java:535)
at weblogic.servlet.internal.session.ReplicatedSessionData.syncSession(ReplicatedSessionData.java:594)
at weblogic.servlet.internal.session.ReplicatedSessionContext.sync(ReplicatedSessionContext.java:85)
at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.syncSession(ServletRequestImpl.java:2810)
at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.syncSession(ServletRequestImpl.java:2785)
at weblogic.servlet.internal.ServletResponseImpl$1.run(ServletResponseImpl.java:1480)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1474)
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1455)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
这是导致此问题的 java 文件:
package com.tjf.admin.virtualFair;
import com.tjf.TargetedJobFairsConstants;
import com.tjf.util.TargetedJobFairsToolBox;
import org.apache.log4j.Logger;
import java.io.Serializable;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.Comparator;
import java.util.TreeMap;
public class Job implements Serializable {
protected int id;
protected String name;
protected String description;
protected int companyId;
protected String hash;
private static Logger logger = initializeLogger();
protected static Logger initializeLogger() {
Logger logger = Logger.getLogger(TargetedJobFairsConstants.TJF_LOG4J_NAME);
logger.info("logger initialized!");
return logger;
}
public Job(String name, String description, int companyId) {
this.name = name;
this.description = description;
this.companyId = companyId;
}
public Job(int id, String name, String description, int companyId) {
this.id = id;
this.name = name;
this.description = description;
this.companyId = companyId;
}
public Job(String name, String description) {
this.name = name;
this.description = description;
this.companyId = companyId;
}
public String getHash() {
if (id != -1 && name != null && !name.equals("")) {
return TargetedJobFairsToolBox.createHash(name, "" + id);
} else {
return null;
}
}
public int getCompanyId() {
return companyId;
}
public void setCompanyId(int companyId) {
this.companyId = companyId;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public static boolean validateName(String name, StringBuffer message) {
if (name != null && !name.trim().equals("")) {
// check for duplicated Virtual Fair Company Name
return true;
} else {
if (message.length() > 0) {
message.append(", Name ");
} else {
message.append(" Name ");
}
return false;
}
}
public static boolean validateDescription(String description, StringBuffer message) {
if (description != null && !description.trim().equals("")) {
return true;
} else {
if (message.length() > 0) {
message.append(", Description ");
} else {
message.append(" Description ");
}
return false;
}
}
public static boolean validateCompanyIDString(String companyID, StringBuffer message) {
if (companyID != null && !companyID.trim().equals("")) {
return true;
} else {
if (message.length() > 0) {
message.append(", unknown virtual fair error(32) ");
} else {
message.append(" unknown virtual fair error(32) ");
}
return false;
}
}
protected boolean insertJob(Connection tjfConn, StringBuffer message) {
PreparedStatement insertJobStmt = null;
String insertJobSQL = null;
try {
insertJobSQL = "insert into VIRTUAL_FAIR_JOB ( NAME, DESCRIPTION, COMPANY_ID ) " +
"values (?, ?, ?) ";
insertJobStmt = tjfConn.prepareStatement(insertJobSQL);
insertJobStmt.setString(1, this.name);
insertJobStmt.setString(2, this.description);
insertJobStmt.setInt(3, this.companyId);
insertJobStmt.executeUpdate();
message.append(" Job \"" + this.name + "\" was successfully created.");
return true;
} catch (Exception x) {
logger.error(x, x);
if (message.length() > 0) {
message.append(", unknown virtual fair error(33) ");
} else {
message.append(" unknown virtual fair error(33) ");
}
return false;
}
}
protected boolean updateJob(Connection tjfConn, StringBuffer message) {
PreparedStatement insertJobStmt = null;
String insertJobSQL = null;
try {
insertJobSQL = "update VIRTUAL_FAIR_JOB set NAME = ?, DESCRIPTION = ? where" +
" COMPANY_ID = ? and ID = ?";
insertJobStmt = tjfConn.prepareStatement(insertJobSQL);
insertJobStmt.setString(1, this.name);
insertJobStmt.setString(2, this.description);
insertJobStmt.setInt(3, this.companyId);
insertJobStmt.setInt(4, this.id);
insertJobStmt.executeUpdate();
message.append(" Job \"" + this.name + "\" was successfully updated.");
return true;
} catch (Exception x) {
logger.error(x, x);
if (message.length() > 0) {
message.append(", unknown virtual fair error(34) ");
} else {
message.append(" unknown virtual fair error(34) ");
}
return false;
}
}
public static boolean deleteJobByCompanyID(Connection tjfConn, int companyID, StringBuffer message) {
PreparedStatement deleteJobStmt = null;
String deleteJobSQL = null;
try {
deleteJobSQL = "delete from VIRTUAL_FAIR_JOB where " +
" COMPANY_ID = ? ";
deleteJobStmt = tjfConn.prepareStatement(deleteJobSQL);
deleteJobStmt.setInt(1, companyID);
deleteJobStmt.executeUpdate();
message.append(" Jobs were successfully deleted.");
return true;
} catch (Exception x) {
logger.error(x, x);
if (message.length() > 0) {
message.append(", unknown virtual fair error(35) ");
} else {
message.append(" unknown virtual fair error(35) ");
}
return false;
}
}
public static boolean deleteJob(Connection tjfConn, int jobID, int companyID, StringBuffer message) {
PreparedStatement deleteJobStmt = null;
String deleteJobSQL = null;
try {
deleteJobSQL = "delete from VIRTUAL_FAIR_JOB where " +
" COMPANY_ID = ? and ID = ? ";
deleteJobStmt = tjfConn.prepareStatement(deleteJobSQL);
deleteJobStmt.setInt(1, companyID);
deleteJobStmt.setInt(2, jobID);
deleteJobStmt.executeUpdate();
message.append(" Job was successfully deleted.");
return true;
} catch (Exception x) {
logger.error(x, x);
if (message.length() > 0) {
message.append(", unknown virtual fair error(36) ");
} else {
message.append(" unknown virtual fair error(36) ");
}
return false;
}
}
public static TreeMap<Job, Integer> getJobListforCompany(Connection tjfConn, int companyID, StringBuffer message) {
TreeMap<Job, Integer> jobsList = new TreeMap<Job, Integer>(new Comparator() {
public int compare(Object job, Object anotherJob) {
String name1 = ((Job) job).getName();
String name2 = ((Job) anotherJob).getName();
return name1.toLowerCase().compareTo(name2.toLowerCase());
}
});
PreparedStatement getJobListStmt = null;
String getJobListSQL = null;
ResultSet getJobListRset = null;
try {
getJobListSQL = "select ID, NAME, DESCRIPTION, COMPANY_ID from VIRTUAL_FAIR_JOB where COMPANY_ID = ?";
getJobListStmt = tjfConn.prepareStatement(getJobListSQL);
getJobListStmt.setInt(1, companyID);
getJobListRset = getJobListStmt.executeQuery();
while (getJobListRset.next()) {
Job holdJob = new Job(getJobListRset.getInt(1),
getJobListRset.getString(2),
getJobListRset.getString(3),
getJobListRset.getInt(4));
jobsList.put(holdJob, holdJob.id);
}
return jobsList;
} catch (Exception x) {
logger.error(x, x);
if (message.length() > 0) {
message.append(", unknown virtual fair error(37) ");
} else {
message.append(" unknown virtual fair error(37) ");
}
return null;
}
}
public static Job getJobByID(Connection tjfConn, int jobID, StringBuffer message) {
PreparedStatement getJobListStmt = null;
String getJobListSQL = null;
ResultSet getJobListRset = null;
try {
getJobListSQL = "select ID, NAME, DESCRIPTION, COMPANY_ID from VIRTUAL_FAIR_JOB where ID = ?";
getJobListStmt = tjfConn.prepareStatement(getJobListSQL);
getJobListStmt.setInt(1, jobID);
getJobListRset = getJobListStmt.executeQuery();
Job holdJob = null;
if (getJobListRset.next()) {
holdJob = new Job(getJobListRset.getInt(1),
getJobListRset.getString(2),
getJobListRset.getString(3),
getJobListRset.getInt(4));
}
return holdJob;
} catch (Exception x) {
logger.error(x, x);
if (message.length() > 0) {
message.append(", unknown virtual fair error(38) ");
} else {
message.append(" unknown virtual fair error(38) ");
}
return null;
}
}
}
这可能是什么原因造成的?
最佳答案
这是在这一行创建的比较器:
TreeMap<Job, Integer> jobsList = new TreeMap<Job, Integer>(new Comparator() {
至少,我认为是,因为堆栈跟踪中的$1
通常表示一个内部类,而这是我唯一能看到的内部类。另外,我相信像这样创建它会使 TreeMap 不可序列化(因为它想要序列化比较器)。
与其将其设为匿名类,不如将其单独声明,并使其实现java.io.Serializable
。
关于java.io.NotSerializableException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5568362/
class NotSerializable {} class MyClass implements Serializable { private NotSerializable field; /
尝试序列化 Lot 对象并将其发送到套接字。获取错误: java.io.NotSerializableException: com.server.ClientServiceThread 为什么? pu
我们在集群 QA 环境中遇到以下错误。我们在 linux 上运行 Weblogic 10.3.3.0。 #### > 0) { message.append(", Name "); }
在我的最后一个问题没有得到答案后,我将这件事重新表述为最简单的形式。 1 个按钮、1 个点击监听器、1 个可序列化对象和 1 个用于输出可序列化对象的子例程。此代码基于我在 stackoverflow
我正在尝试通过套接字连接发送定制对象。该类实现了可序列化,但当我尝试将对象写入套接字时,构造函数仍然抛出 NotSerializableException。我将在下面发布相关代码: public cl
基本上,我编写了一个在屏幕上绘制形状并将每个形状保存到 ArrayList 中的程序。我想做的是弄清楚如何将 ArrayList 保存到一个文件中,以便我可以稍后调用它并编辑已经存在的形状。 所以我一
java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: java.lang.reflect.
一段时间以来,我一直在尝试用序列化解决我的问题,不幸的是我迷路了。如果有人可以帮助我找到问题,我将不胜感激。我已经在每个类中实现了 Serializable。 已解决:问题是,一个类实现了 Seria
我正在尝试使用对象输出流将我制作的对象写入文件,每当我运行代码时,它都会抛出 NotSerializableException。如果您看到我做错了什么,请告诉我。 保存方法: public stati
我已经使用 OpenSSO 提供的 SAML 库实现了一个安全模块,但是我的服务器没有正确关闭并出现异常: java.io.NotSerializableException: com.sun.iden
我在社交网站上工作,我正在使用 JSF 2.2我有一些带有 View 范围的bean,在这些bean服务中注入(inject)了。 我有时在 tomcat 中遇到著名的 NotSerializable
java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException 为什么在启动我的服务器 Tomcat
我有一个 Activity,其中有一个私有(private)类数据。在 onSaveInstanceState 方法中,我尝试将此保存为 Data 的一个实例。这是我的整个 Activity : pu
我的两个类也设计为创建一个 StudentData 对象数组(姓名、出生日期和 ID),其中包括一个 toString 覆盖以打印出所有变量。然后序列化数组并将其保存到名为 studentdata.t
这是我的小类: import java.io.Serializable; public abstract class SerializableCallback extends Callback imp
在我的 Spark 代码中,我试图从一个 csv 文件创建一个 IndexedRowMatrix。但是,我收到以下错误: Exception in thread "main" org.apache.s
我编写了一个 GUI,它使用 RMI 与服务器应用程序连接。因为 GUI 必须向在线用户显示一个线程刷新包含“在线用户列表”的 JLabel。有时我在运行时遇到这个异常: Caused by: jav
我有一个过滤项目的界面: public interface KeyValFilter extends Serializable { public static final long seria
我正在处理 jenkinsfile 并且在第三阶段遇到异常: an exception which occurred: in field com.cloudbees.groovy.cps.impl.B
我在 JSF 2 中使用 spring 3 我用 spring bean 替换了 JSF 管理的 bean,方法是在 bean 之上添加: @Component("mybean") @Scope("s
我是一名优秀的程序员,十分优秀!