
|
If you were logged in you would be able to see more operations.
|
|
|
OSCache
Created: 18/May/04 11:42 PM
Updated: 23/Jan/05 04:45 PM
|
|
| Component/s: |
Listeners
|
| Affects Version/s: |
2.0.2
|
| Fix Version/s: |
2.1
|
|
|
Environment:
|
Processor: Pentium 4 (2GHtz)
OS: Windows XP
IDE: Eclipse 2.1
Processor: Pentium 4 (2GHtz)
OS: Windows XP
IDE: Eclipse 2.1
|
|
|
The com.opensymphony.oscache.plugins.clustersupport.JavaGroupsBroadcastingListener class in OSCache version 2.0.2 references the following classes from JavaGroups:
import org.javagroups.Address;
import org.javagroups.Channel;
import org.javagroups.blocks.NotificationBus;
The current version of JavaGroups (version 2.2.1) does not use this package naming, but rather uses org.jgroups.xxx
Consequently any attempt to use the JavaGroups broadcast listener in OSCache results in abnormal ClassNotFound errors.
The correct import statements should appear as:
import org.jgroups.Address;
import org.jgroups.Channel;
import org.jgroups.blocks.NotificationBus;
|
|
Description
|
The com.opensymphony.oscache.plugins.clustersupport.JavaGroupsBroadcastingListener class in OSCache version 2.0.2 references the following classes from JavaGroups:
import org.javagroups.Address;
import org.javagroups.Channel;
import org.javagroups.blocks.NotificationBus;
The current version of JavaGroups (version 2.2.1) does not use this package naming, but rather uses org.jgroups.xxx
Consequently any attempt to use the JavaGroups broadcast listener in OSCache results in abnormal ClassNotFound errors.
The correct import statements should appear as:
import org.jgroups.Address;
import org.jgroups.Channel;
import org.jgroups.blocks.NotificationBus; |
Show » |
|