java.io.NotSerializableException: org.omnifaces.taghandler.Converter
I would like to use OmniFaces ListConverter as my converter on PrimeFaces autocomplete . Unfortunately the following exception pops out when I tried to. As far as I'm concerned, JSF converters are not required to implement Serializable interface. I read the java ee 6 tutorial and was unable to find such a statement. References links : http://docs.oracle.com/javaee/6/tutorial/doc/bnaus.html http://docs.oracle.com/javaee/6/api/javax/faces/convert/Converter.html I had the feeling that MyFaces is trying to unserialize any object used on my page. How can I handle that situation? Environment