Hello,
in org.springframework.web.servlet.mvc the
ParameterizableViewController's handleRequestInternal method is
declared without a throws clause, though the overridden method from
AbstractController has a "throws Exception" clause. Regularly, after
subclassing ParameterizableViewController, I end up changing my code
because of the missing throws clause (e.g. because
RequestUtils.getRequiredIntParameter(), used in the body, has a throws
clause).
Is there a reason, why handleRequestInternal in
ParameterizableViewController lacks the throws clause? Can it be
changed?
Regards,
Timo
|