And thank you! I had a similar problem ... which I solved with your
solution!
Jeroen Brattinga
Messi Chan wrote:
Hi, Jeroen.
You're right, I have solved the problem.
I have a AbstractMessageEncoder is super class of A/B Encoder. I have
defined static field named TYPES used by getMessageTypes() in the
AbstractMessageEncoder. This is the crux of the problem. Removing it and
it's work now.
Thx all of you. :)
********code*********
public class AbstractMessageEncoder {
public static Set<Class> TYPES; // should be removed
public Set<Class> getMessageTypes() {
return TYPES;
}
}