404.jsp
956 Bytes
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%
String path = request.getContextPath();
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="monitor server">
<meta name="renderer" content="webkit">
<title>Error 404</title>
<link href="<%=path%>/static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
.container{
padding: 200px 0px;
}
</style>
</head>
<body>
<div class="container">
<div class="alert alert-danger">
<strong>Error 404 Not Found!</strong>
<%
if(request.getAttribute("errorMsg") != null && request.getParameter("_debug_") != null){
%>
<div><%=request.getAttribute("errorMsg")%></div>
<%
}
%>
</div>
</div> <!-- /container -->
</body>
</html>