标签:lock head 链接 contex dea get erro 自定义 ade
学习资源:动力节点的2020最新SpringMVC教程【IDEA版】-springmvc从入门到精通
页面的请求地址中不加 / ,相对地址的参考地址是:当前页面的地址
<a href="user/register">发起注册请求</a>
点击上面的超链接后,新的页面的地址会变为:http://ip:端口号:工程名/user(register 被作为资源名)。这时如果在这个页面发起不带 / 的请求:
<a href="user/second">发起第二个请求</a>
会出现 http://ip:端口号/工程名/user/user/second The requested resource is not available 的问题。
解决方式:
<head>
<base href="http://ip:端口号/工程名/" />
</head>
<body>
<a href="user/second">发起第二个请求</a>
</body>
项目中的使用方式:
<%
String basePath = request.getScheme() + "://" +
request.getServerName() + ":" + request.getServerPort() +
request.getContextPath() + "/";
%>
<html>
<head>
<base href="<%=basePath%>">
</head>
</html>
页面的请求地址中加 / ,参考地址是:http:ip:端口号/。直接访问是会略过工程地址的,会造成 HTTP ERROR 404
<a href="/user/register">发起注册请求</a>
为了解决这个问题,可以在页面的请求地址中,附上 "/工程名" 的前缀
<a href="/工程名/user/register">发起注册请求</a>
但是这样的话,又会导致两个问题:
解决方式:使用 ${pageContext.request.contextPath} 作为工程名:
<a href="${pageContext.request.contextPath}/user/register">发起注册请求</a>
<a href="http://ip:端口号/工程名/自定义请求地址">发起注册请求</a>
标签:lock head 链接 contex dea get erro 自定义 ade
原文地址:https://www.cnblogs.com/sout-ch233/p/13622393.html