<%--
Created by IntelliJ IDEA.
User: liuqun
Date: 2017/7/31
Time: 21:59
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>環(huán)境配置</title>
</head>
<body>
${error}
</body>
</html>
測試
package com.company.combine.controller;
import com.company.combine.model.MyCustomerException;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* Created by liuqun on 2017/8/16.
*/
@Controller
public class ExceptionTestController {
@RequestMapping(value = "requestError")
public void testException() throws MyCustomerException {
throw new MyCustomerException("異常了");
}
}