1)Jsp网站中路径问题
(1)JSP网页中的相对路径与绝对路径
地址:http://shawnqiu.iteye.com/blog/721282
http://localhost:8080/MainWeb/
"/"代表根目录,"./" 代表当前目录,"../"代表上级目录。
服务器端的相对地址指的是相对于你的web应用的地址,是在服务器端解析的。(http://localhost:8080/MainWeb/)
html页面中的相对地址都是相对于服务器根目录,是客户端浏览器解析的。(http://localhost:8080/)
webapp MainWeb
i:/test/MainWeb/a.jsp
i:/test/MainWeb/aa/aa.jsp
i:/test/MainWeb/aa/bb.jsp
i:/test/MainWeb/aa/cc/c.jsp
地址栏中输入地址:[http://localhost:8080/MainWeb/aa/aa.jsp]
aa.jsp中内容 ---HTML中的../ 上级目录
(1)<a href="../a.jsp">test1</a> || 连接到[http://localhost:8080/MainWeb/a.jsp]
(2)<a href="/MainWeb/a.jsp">test2</a> || 连接到[http://localhost:8080/MainWeb/a.jsp]
(3)<a href="/a.jsp">test3</a> || 连接到[http://localhost:8080/a.jsp]
(4)<a href="./bb.jsp">test4</a> || 连接到[http://localhost:8080/aa/bb.jsp]
(5)<a href="bb.jsp">test5</a> || 连接到[http://localhost:8080/aa/bb.jsp] ----同4 ,代表当前目录
(6)<a href="cc/c.jsp">test6</a> || 连接到[http://localhost:8080/aa/cc/c.jsp]
设置<form>标签中的action值为上面的href值,两者得到的结果一致(一致:地址栏中的结果和页面显示的结果)。
[for example:]
<form action="/MainWeb/a.jsp">
<input type="submit">
</form>
路径解析:[http://localhost:8080/MainWeb/aa/aa.jsp]
(a) "/" ---->[http://localhost:8080/] (根目录)
(b) "./" --->[http://localhost:8080/MainWeb/aa/] (当前目录)
(c) "../"--->[http://localhost:8080/MainWeb/] (上一级目录)
注:当前目录可以省略不写,如aa.jsp中的(5)和(4)结果是一样的
从结果可以看出,这三者"/", "./" ,"../"是对绝对路径URL[http://localhost:8080/MainWeb/aa/aa.jsp]的处理
(2)JSP、HttpServlet路径讲解
地址:http://hi.baidu.com/630270730/blog/item/bc815865273bd9e5f7365493.html
(3)JSP、Servlet中的相对路径和绝对路径(包括路径问题)
地址:http://bufeifang.blog.163.com/blog/static/558981512009511103449765/
(4)关于Java中相对路径和绝对路径问题总结
地址:http://www.enet.com.cn/article/2008/0311/A20080311178966.shtml
(5)Web开发中的路径问题
地址:http://zzqrj.iteye.com/blog/806909
(6)JSP的相对路径深入研究(多次完善)
地址:http://www.iteye.com/topic/352202
(7)java(Web)中相对路径,绝对路径问题总结
地址:http://www.iteye.com/topic/638311
2)MyEclipse相关资料
(1)安装jseclipse到myeclipse中
地址:http://www.cnblogs.com/oakpip/archive/2009/09/10/1563827.html
(2)Eclipse开发Javascript环境配置(含EXTJs配置)
地址:http://www.cnblogs.com/sayo/archive/2008/10/14/1310769.html、
(3)myeclipse8.0下载 汉化 破解方法 及 svn配置
地址:http://blog.csdn.net/cuker919/article/details/5328461
(4)MyEclipse破解8.0注册码
地址:http://hi.baidu.com/windows5100/blog/item/5303b5ecbdd1814279f055df.html