`
文章列表
unable to load configuration. - [unknown location] at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:431)    at org.apache.struts2.dispatcher.ng.InitOperations.initDispatcher(InitOperations.java:69)    at org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter.init(Struts ...
解释一:          屏蔽某些编译时的警告信息         在强制类型转换的时候编译器会给出警告        加上        程序代码        @SuppressWarnings("unchecked")        就不会警告了 解释二: 注释类型 当你的编码可能存在警告时,比如安全警告,可以用它来消除 api中是这样描述的 指示应该在注释元素(以及包含在该注释元素中的所有程序元素)中取消显示指定的编译器警告。注意,在给定元素中取消显示的警告集是所有包含元素中取消显示的警告的超集。例如,如果注释一个类来取消显示某个警告,同时注 ...
.a'      : 'application/octet-stream', '.ai'     : 'application/postscript', '.aif'    : 'audio/x-aiff', '.aifc'   : 'audio/x-aiff', '.aiff'   : 'audio/x-aiff', '.au'     : 'audio/basic', '.avi'    : 'video/x-msvideo', '.bat'    : 'text/plain', '.bcpio' : 'application/x-bcpio', '.bin'    : ' ...
...
1.     客户端提起一个(HttpServletRequest)请求,如上文在浏览器中输入”http://localhost:8080/TestMvc/add.action”就是提起一个(HttpServletRequest)请求。 2.     请 求被提交到一系列(主要是三层)的过滤器(Filter),如(ActionContextCleanUp、其他过滤器(SiteMesh等)、 FilterDispatcher)。注意这里是有顺序的,先ActionContextCleanUp,再其他过滤器(SiteMesh等)、最后到 FilterDispatcher。 3.     Filte ...
ActionProxyFactory:   create ActionProxy factory,create ActionInvocation,create    ActionProxy ActionProxy: serves as client code's handle to execute an action,it holds an ActionInvocation which reprents the current   satate of the execution of the action.ActionProxy is created by a ActionProxyFact ...
先看一个代码 String o="1"; System.out.println(o.getBytes("unicode").length); System.out.println(o.getBytes("iso-8859-1").length); System.out.println(o.getBytes("gbk").length); 输出 4 1 1 首先unicode对字符是采用双字节存储 也就是这里 一个是 两个字节 !可能在开头或者结尾有种结尾符!! 为了在读取字节时能知道所采用的字节序,在 ...
或者看下面的网址 http://msdn.microsoft.com/zh-cn/library/ms256059(VS.80).aspx 本文摘自http://www.iteye.com/topic/517520 DTD——文档类型定义(Document Type Definition)\ 由于XML可以自定义标签,那么自然各人编写的标签不一样,这样同步数据便成了问题,因 ...
因为web-inf下,应用服务器把它指为禁访目录,即直接在浏览器里是不能访问到的。但是可以让servlet进行访问,如web-inf下有a.jsp则可以用request.getRequestDispatcher("/WEB-INF/a.jsp").forward(request,response);         如果你想访问web-inf下 ...
1、“#”符号有三种用途: (1)、访问非根对象(struts中值栈为根对象)如OGNL上下文和Action上下文,#相当于ActionContext.getContext();下表有几个ActionContext中有用的属性: 名称 作用 例子 parameters 包含当前HTTP请求参数的Map #parameters.id[0]作用相当于request.getParameter("id") request 包含当前HttpServletRequest的属性(attribute)的Map #request.userName相当于reque ...
在struts1.x Action类的execute方法中,有四个参数,其中两个就是response和request。而在Struts2中,并没有任何参数,因此,就不能简单地从execute方法获得HttpServletResponse或HttpServletRequest对象了。     但在Struts2 Action类中仍然有很多方 ...
ActionContext介绍 通过上面用户注册例子的学习,我们知道Xwork与Web无关性,我们的Action不用去依赖于任何Web容器,不用和那些JavaServlet复杂的请求(Request)、响应(Response)关联在一起。对请求(Request)的参数(Param),可以使用拦截器框架自动调用一些get()和set()方法设置到对应的Action的字段中。但是,仅仅取得请求参数的值就能完全满足我们的功能要求吗?不,在Web应用程序开发中,除了将请求参数自动设置到Action的字段中,我们往往也需要在Action里直接获取请求(Request)或会话(Session)的一些信息, ...
先看个程序 package com.test.one; public class one { private String name; private int id; @Override public int hashCode() { System.out.println("#"); return 1; }//重写hashcode/..... public boolean equals(one o) { if(o.name.equals(name)&&o.id==id) { retu ...
今天有人在群里提出了 这么个问题 <script language="javascript" type="text/javascript"> function bigimage(imageurl) { var varname = new Image(); varname.src = imageurl; if (varname.width>99) { document.write ( " <IMG SRC= "+varname.src+ " bord ...
String str="D:/java/apache-tomcat-6.0.26/webapps/tvhd/testfile" 如何以 / 为分割符号对字符串str进行分割呢? 很多人 说了自己的想法!我总结了下!! 其实 ‘/’不需要转义的 String str="D:/java/apache-tomcat-6.0.26/webapps/tvhd/testfile"; String strs[]=str.split("/"); for(int i=0;i<strs.length;i++) { ...
Global site tag (gtag.js) - Google Analytics