在jsp页面中如何将java异常 抛出

voidCheckCode(Stringcode)throwsBusinessException{if(code==null||code.equals(""))throw... void CheckCode(String code) throws BusinessException
{
if(code==null||code.equals("")) throw new BusinessException("经办人编码不能未空");
String hql="select count(*) from Actfrm05DeptJbr where code=? ";
int cnt;
try {
cnt = this.dao.qryCountByHql(hql, code);
if(cnt!=0)
throw new BusinessException("经办人编码已经被使用");
} catch (BugReportBaseException e) {
e.printStackTrace();
}
}判断是否相同 有抛出异常

public ActionForward m105ModifyDeptJbr(ActionMapping mapping,ActionForm form,
HttpServletRequest request,HttpServletResponse response){
try {
this.checkPower(request, "1005");
@SuppressWarnings("unused")
String id = util.WebFormData.decodeUTF8("id",request);
BikeItf.deptManager.m112ModifyJbr(this.getParameterMap(request),this.getLoginUser(request));
util.AjaxResponse.printUTF8_JSON_Success(response);
} catch (BugReportBaseException e) {
e.printStackTrace();
}
return null;
}这边的actin 该怎么接收抛出的异常
展开
 我来答
朝华忻愉S4
2014-09-23 · 超过63用户采纳过TA的回答
知道答主
回答量:123
采纳率:0%
帮助的人:121万
展开全部
可将返回的错误信息放入request中
然后再页面上显示即可使用js代码中的alert方法
放入方法为
在action中
HttpServletRequest request = this.getRequest(); // 先声明request
request.setAttribute("message", "密码错误!");
在jsp页面上显示
写在js中

<c:if test="${!empty requestScope.message}" >
<script type="text/javascript">
alert('<c:out value="${requestScope.message}"/>');
</script>
<c:remove var="message" scope="request"/>
</c:if>
这里使用到了c标签

需要在jsp页面上起始部分加入
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

另导入jstl.jar
请采纳。
懂你所想呦
2014-09-23 · TA获得超过1626个赞
知道小有建树答主
回答量:1295
采纳率:44%
帮助的人:611万
展开全部
晕,我竟然忘了,记得以前搞过,应该是用 throws
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式