This page (revision-61) was last changed on 24-Sep-2019 16:53 by Albrecht Striffler

This page was created on 29-Jan-2014 10:44 by Albrecht Striffler

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
61 24-Sep-2019 16:53 11 KB Albrecht Striffler to previous

Page References

Incoming links Outgoing links
IntelliJ FAQ ...nobody

Version management

Difference between version and

At line 74 added one line
!NotSerializableException on Tomcat startup
At line 76 added one line
During startup KnowWE/Tomcat often produces exceptions of the following kind:
At line 78 added 9 lines
%%prettify
{{{
java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.ecyrd.jspwiki.auth.UserManager
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1351)
at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1970)
at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1894)
....
}}}
%%
At line 88 added 4 lines
KnowWE still works, but the exceptions are annoying/irritating...\\
In eclipse it was possible to delete the work-folder in KnowWE-App, but in IntelliJ that does no longer work.\\
\\
The solution is actually pretty simple, just deactivate session persistence in your Tomcat:
At line 93 added 2 lines
# Open file "%Tomcat_Home%/conf/context.xml"
# To disable the session persistence, uncomment the line <Manager pathname="" />
At line 96 added 3 lines