vote up 0 vote down star

Hi,

Is it possible to throw an exception in a JSP without using scriptlet code?

Cheers, Don

flag

38% accept rate

3 Answers

vote up 4 vote down check

You really shouldn't be doing anything at the JSP layer that explicitly throws exceptions. The reason you don't want to use scriptlets in JSPs is because that puts application logic in your view. Throwing an exception is inherently application logic, so it doesn't belong in your JSP, scriptlet or not.

link|flag
vote up 0 vote down

You can throw an exception if you do this:

<c:out value="${1/0}" />

or something that is similarly "illegal"

Ideally though, since JSPs are associated with the view...you don't want to throw an exception. You want to catch them with <c:catch>

link|flag
vote up 0 vote down

You could have a bean with a getter method that throw the code, then have the JSP access the bean property. I'm not sure that'd be an actual improvement over a scriptlet.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.