Will do as will say
发布时间:2012-12-28 11:18:17
index.html的页面代码如下:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>********</t......【阅读全文】
发布时间:2012-12-28 11:16:29
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>*****</title></head>......【阅读全文】
发布时间:2012-12-18 14:27:15
#news ul li{overflow:hidden; text-overflow:ellipsis;white-space: nowrap; width:160px;} #news ul li a{}......【阅读全文】
发布时间:2012-12-18 08:53:54
Struts2框架Action通过ActionContext类和ServletActionContext辅助类来访问Servlet ApI都属于非IOC(Inversion of Control)方式。 ServletApplicationContext方式访问Servlet API,例子: HttpServletRequest request = ServletActionContext.g......【阅读全文】
发布时间:2012-12-18 08:53:23
OGNL(Object-Graph Navigation Language)是一种用于读取和设置Java对象属性的描述语言。可以非常简单的表达式访问对象层。 值栈(ValueStack)就是一种数据区域,该区域保存了Application范围内的所有数据和Action处理用户请求数据。OGNL可以以简单的形式从值栈(ValueStack)取得相关的数据。由于值栈(ValueStack)存在于局部线程的ActionContext中,所以在处理用户请求过程中,在任何节点都可以访问值栈。 值栈可以保持Bean对象,值栈常用的方法: void push(Object o):保存一个对象到值栈......【阅读全文】