Why is it spec to only log an exception thrown from a binding method?
I would expect that the component would not activate in this case.
How should exceptions thrown from binding methods be handled to ensure the component is set up correctly?
|
Why is it spec to only log an exception thrown from a binding method? I would expect that the component would not activate in this case. How should exceptions thrown from binding methods be handled to ensure the component is set up correctly? |
|||
|
|
|
Just because the binding of a service reference throws an exception does not necessarily mean the component cannot be activated. Since the component is aware of the exception (after all, it's the binding method that threw it), it can be implemented in such a way that it can still be activated, e.g. by falling back on a default value or by providing limited services. Binding methods should not throw any exception anyway, unlike activation methods that can make the activation fail. Reference: OSGi 112.5.7: "If a bind method throws an exception, SCR must log an error message containing the exception with the Log Service, if present, but the activation of the component configuration does not fail." |
|||||||||||||
|