摘要: 貌似 收藏栏的图标 阅读全文
posted @ 2016-01-10 18:16 理舞 阅读(161) 评论(0) 推荐(0) 编辑
摘要: protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 设置响应头... 阅读全文
posted @ 2016-01-10 18:09 理舞 阅读(1647) 评论(0) 推荐(0) 编辑
摘要: map时key/value形式存储信息的,键可以为对象null public static void main(String[] args) { Map map = new HashMap(); map.put("hello", "world"); m... 阅读全文
posted @ 2016-01-10 18:02 理舞 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 在servlet中HttpServeltRequest中有一个方法getRequestURL()假如我们平常输入的地址是:localhost/Demo1/TestServlet?hello=world起初我认为,通过getRequestURL()得到的就是我所输入的,发现一直不对,没有实现我的设想,... 阅读全文
posted @ 2016-01-10 17:41 理舞 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 该http转发,我感觉有点类似于负载均衡(我还没有详细了解过负载均衡)。现在有三个站点,想自己建立一个web,对三个站点进行整合,效果如图所示:a)现状:浏览器需要访问3个站点,需要记住3个地址,并分别访问b)实现:写一个web0对请求进行转发,用户只需要与web0交互,不管web1~3实现思路:在... 阅读全文
posted @ 2016-01-10 17:31 理舞 阅读(524) 评论(0) 推荐(0) 编辑