2

我的 JSP 页面中有一个接受整数值的复选框:

<form:checkbox path="somePath" value="2" /> Dangerous Checkbox <br />

如果用户将输入的值更改为一个String值,例如:

<form:checkbox path="somePath" value="blah" /> Dangerous Checkbox <br />

该页面将抛出一个NumberFormatException. 如何在我的 Controller 中捕捉到这一点并显示有意义的消息?

4

1 回答 1

1

你可以使用 JSTL 的c:catch标签:

<c:catch var ="numberFormatException">
<form:checkbox path="somePath" value="blah" /> Dangerous Checkbox <br />
</c:catch>

<c:if test = "${numberFormatException!= null}">
   <p>The exception is : ${numberFormatException} <br />
   There is an exception: ${numberFormatException.message}</p>
</c:if>
于 2013-01-15T22:53:07.800 回答