uCosminexus Application Server, Messages

[Contents][Back][Next]

KDJE53905-W

The specified value for the tag in the deployment descriptor is invalid. If you continue, dependency injection will fail. (reference type = aa....aa, target class = bb....bb, target name = cc....cc)

aa....aa: Reference type
bb....bb: DI target class name
cc....cc: DI target name
Description
The value specified in the tag of the Deployment Descriptor is invalid. If you continue, Dependency Injection will fail.
Take action based on the following causes:
  • The class specified in the <injection-target-class> tag does not exist.
  • The set method corresponding to the value specified in the <injection-target-name> tag does not exist. Alternatively, the set method exists, but the type of the arguments is not an appropriate type as the target.
  • A field with the same name as the value specified in the <injection-target-name> tag does not exist. Alternatively, the field exists, but the type of the field is not an appropriate type as the target.
Action
Revise the definition of the Deployment Descriptor or the application.