What happens when an init method throws an exception ?
Suppose i have the following definition :
<bean id="exampleInitBean" class="examples.ExampleBean" init-method="checkInitialization"/> and checkInitialization method throws an exception. At what point will this exception be caught and how will my application come to know about it.


Reply With Quote