This commit is contained in:
thinkgem
2022-03-16 14:27:48 +08:00
parent 36192ad56c
commit 62df9b5a9e

View File

@@ -171,7 +171,7 @@ public class ObjectUtils extends org.apache.commons.lang3.ObjectUtils {
return ObjectUtils.serializeFst(object); return ObjectUtils.serializeFst(object);
} }
} catch (Exception e) { } catch (Exception e) {
logger.error("serialize", e); logger.error("serialize", e.getMessage());
} }
return null; return null;
} }
@@ -189,7 +189,7 @@ public class ObjectUtils extends org.apache.commons.lang3.ObjectUtils {
return ObjectUtils.unserializeFst(bytes); return ObjectUtils.unserializeFst(bytes);
} }
} catch (Exception e) { } catch (Exception e) {
logger.error("unserialize", e); logger.error("unserialize", e.getMessage());
} }
return null; return null;
} }
@@ -210,7 +210,7 @@ public class ObjectUtils extends org.apache.commons.lang3.ObjectUtils {
oos.writeObject(object); oos.writeObject(object);
bytes = baos.toByteArray(); bytes = baos.toByteArray();
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); throw new RuntimeException(e);
} }
long totalTime = System.currentTimeMillis() - beginTime; long totalTime = System.currentTimeMillis() - beginTime;
if (totalTime > 30000){ if (totalTime > 30000){
@@ -235,7 +235,7 @@ public class ObjectUtils extends org.apache.commons.lang3.ObjectUtils {
ObjectInputStream ois = new ObjectInputStream(bais);) { ObjectInputStream ois = new ObjectInputStream(bais);) {
object = ois.readObject(); object = ois.readObject();
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); throw new RuntimeException(e);
} }
} }
long totalTime = System.currentTimeMillis() - beginTime; long totalTime = System.currentTimeMillis() - beginTime;