uCosminexus Application Server, Messages

[Contents][Back][Next]

KDJE43204-E

Cyclical dependency: aa....aa. The cyclical dependency graph is as follows bb....bb

aa....aa: Singleton Session Bean with cyclical dependency
bb....bb: Cyclical dependency
Description
A cyclical dependency exists in the @DependsOn annotation of the Singleton Session Bean.
Action
Remove the cyclical dependency from the @DependsOn annotation.
An example of cyclical dependency is as follows:
Example
@Singleton
@DependsOn("B")
class A {..}
 
@Singleton
@DependsOn("A")
class B{..}