摘要: 每当chrome有更新之后,都有不少用户想要下载离线版的安装文件,但苦于找不到下载地址而发愁,其实这个问题很简单,下面我来分享一下方法(仅针对Windows操作系统):对于稳定版(正式版)Chrome来说,只需要在Chrome的“最终用户许可协议”页面链接后面添加”?standalone=1″即可,地址也就是: http://www.google.com/chrome/eula.html?standalone=1对于Beta以及Dev版Chrome来说,只需要记住下面这个地址: http://dl.google.com/chrome/install/{version number}/chrom 阅读全文
posted @ 2011-10-13 15:39 Atlas's blog 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 在struts1中,获得到系统的request或者session对象非常方便,都是按照形参传递的,但是在struts2中,request和session都被隐藏了struts2提供两种方式访问session和request,其中比较常用的是利用SPRING里面所说的IOC即控制反转IOC方式:action类实现ServletRequestAware接口,并新建一个HttpServletRequest requestpublic class UserLoginAction extends ActionSupport implements ServletRequestAware{ public.. 阅读全文
posted @ 2011-10-13 14:33 Atlas's blog 阅读(366) 评论(0) 推荐(0) 编辑