在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 该怎么接收抛出的异常 展开
{
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 该怎么接收抛出的异常 展开
展开全部
可将返回的错误信息放入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
请采纳。
然后再页面上显示即可使用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
请采纳。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询