<%@page contentType="text/html" pageEncoding="UTF-8"%>
|
<!DOCTYPE html>
|
<html>
|
<head>
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<title>um Werte</title>
|
</head>
|
<body>
|
<p>Werte</p>
|
<p>pathInfo: <%=request.getPathInfo()%></p>
|
<p>requestURL <%=request.getRequestURL()%></p>
|
<p>contextPath <%=request.getContextPath()%></p>
|
<p>servletPath <%=request.getServletPath()%></p>
|
<p>
|
<%
|
String pathInfo = request.getPathInfo();
|
String[] path = pathInfo.split("/");
|
for(int i = 0; i < path.length; i++) {
|
%>
|
<p>path[<%=i%>]: <%=path[i]%></p>
|
<%
|
}
|
%>
|
</p>
|
</body>
|
</html>
|