Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I’m using Jboss 5, and invoking hundreds of EJBs with complex parameters. There are some performance issues that I think are related to Java Serialization

As Jboss using JbossRemoting for remote invocations, I would like to use JbossSerialization to optimize serialization performance.

Like explained here, I'm using

-DSERIALIZATION="org.jboss.remoting.serialization.impl.jboss.JBossSerializationManager"

at server side and in invocation code.

But JavaSerializationManager is still used by Jboss.

Can someone explain or exemplify how to configure JBOSS for using JBossSerializationManager.

In other words, what is the easiest way to make already deployed EJB application using Jboss Serialization instead of java Serialization?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.