web应用中路径问题
程序员文章站
2022-05-09 23:17:40
...
目标资源:index.html
思考:目标资源给谁使用?
服务器: / 表示当前web应用的根目录(webRoot下面)
浏览器; / 表示在webapps根目录下(没有去到任何项目),/ 前需要加上web应用名称
请求转发
目标资源供服务器使用
request.getRequestDispatcher("/index.html").forward(request,response);```
**请求重定向**
目标资源供浏览器使用
response.sendRedirect("/day11/index.html");```
html页面超链接
目标资源供浏览器使用
response.getWriter().write("<html><body><a href='/day11/index.html'>超链接</a></body></html>");```
**html页面表单提交**
目标资源供浏览器使用
response.getWriter().write("<html><body><form action='/day11/index.html'><input type='submit'/></form><body></html>");```