`
文章列表
  HTTP Status 500 - No action instance for path could be created   出现这个问题大部分解决方案都是,因为action的全路径名和在struts配置文件的action的type类型名字不一样,导致不能创建actiong,这也是最常见的错误,还有的就是包的问题,由于缺少某个包导致不能通过创建action,这里需要说明的一点是,就算hibernate的配置错误,也可能导致不能创建action,也会报这个错误,确定自己的action路径没错
  <!-- ============= GENERAL DEFINITIONS ============= --> <!-- Configurer that replaces ${...} placeholders with values from a properties file --> <!-- (in this case, JDBC-related settings for the dataSource definition below) --> <bean id="propertyConfigurer" cla ...
      <!-- ============ GENERAL DEFINITIONS========== -->   <!-- Configurer that replaces ${...} placeholders with values from a properties file --> <!-- (in this case, JDBC-related settings for the dataSource definition below) --> <bean id="propertyConfigurer" c ...
  SQL语句导入导出大全   /******* 导出到excel  EXEC master..xp_cmdshell 'bcp SettleDB.dbo.shanghu out c:\temp1.xls -c -q -S"GNETDATA/GNETDATA" -U"sa" -P""' /*********** 导入Excel  SELECT *  FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0',  'Data Source="c:\test.xls"; ...
对于WEB程序来说,前端(JavaScript)和后端(JSP/Servlet)是没法共用数据的,只能是后端程序(JSP)把数据输出,生成页面到前端,这时候生成的页面中的JavaScript代码才有可能得到所谓jsp的数据。同样的,只有把JavaScript里的数据提交给后端JSP代码,JSP程序中才能得到JavaScript的数据。   那如何实现在页面的JavaScript中使用jsp中的数据或是在jsp中使用页面的JavaScript数据呢?   一、页面中的JavaScript的数据如何提交给后台的jsp程序 ① 可以将JavaScript的数据以xxx.JSP?var1=a ...
大多以tar.gz 和tar.bz2打包软件,大多是通过 ./configure ;make ;make install 来安装的;有的软件是直接make;make install ;  我们可以通过./configure --help 来查看配置软件的功能;大多软件是提供./configure 配置软件的功能的;少数的也没有,如果没有的就不用./configure ;直接make;make install 就行了;  ./configure 比较重要的一个参数是 --prefix ,用--prefix 参数,我们可以指定软件安装目录;当我们不需要这个软件时,直接删除软件的目录就行了;  ...
  orcl\10.2.0\NETWORK\ADMIN\tnsnames.ora   # tnsnames.ora Network Configuration File: e:\orcl\10.2.0\network\admin\tnsnames.ora # Generated by Oracle configuration tools.   ORCL_196.128.1.5 =   (DESCRIPTION =     (ADDRESS_LIST =       (ADDRESS = (PROTOCOL = TCP)(HOST = 196.128.1.5)(PORT = 1 ...
1.avi格式  代码片断如下: <object id="video" width="400" height="200" border="0" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA"> <param name="ShowDisplay" value="0"> <param name="ShowControls" value=" ...

Struts2 上传文件限制

 
  Struts2 上传文件限制 Struts2已经内置了拦截器支持,只要在Struts配置中启用Fileupload 拦截器,并通过为拦截器设置allowedTypes、maximumSize两个参数 即可进行控制 <!-- 配置fileUpload的拦截器 --> <intercepter-ref name="fileUpload"> <!-- 配置允许上传的文件类型 --> <param name="allowedTypes"> image/bmp,image/png,image/gif ...
Date.prototype.format = function(mask) {     var d = this;     var zeroize = function (value, length) {         if (!length) length = 2;           value = String(value);           for (var i = 0, zeros = ''; i < (length - value.length); i++) {             zeros += '0';         }         r ...
Properties props=System.getProperties(); //获得系统属性集    String osName = props.getProperty("os.name"); //操作系统名称    String osArch = props.getProperty("os.arch"); //操作系统构架    String osVersion = props.getProperty("os.version"); //操作系统版本   String osName = System.getProp ...
<%     int[] ages = { 1, 2, 3, 4, 5 }; // 普通数组,JSTL直接使用JSP赋值表达式来取     List<String> names = new LinkedList<String>(); // List     names.add("Biao");     names.add("彪");     names.add("雷");     request.setAttribute("names", names); // 添加到re ...
// confirm   function disp_confirm() { var r=confirm("Press a button!") if (r==true)   {   alert("You pressed OK!")   } else   {   alert("You pressed Cancel!")   } }       // alert     <script>      window.alert("确定。")    </scrip ...
  --本周   select trunc(sysdate,'d')+1 from dual;   select trunc(sysdate,'d')+7 from dual;    --本月   select trunc(sysdate,'mm') from dual;   select last_day(trunc(sysdate)) from dual;   --本季   select trunc(sysdate,'Q') from dual;   select add_months(trunc(sysdate,'Q'),3)-1 from dual;   --本年   ...
Calendar   ca   =   Calendar.getInstance();  ca.setTime(new Date());   //   someDate   为你要获取的那个月的时间  ca.set(Calendar.DAY_OF_MONTH,   1);  Date   firstDate   =   ca.getTime();  ca.add(Calendar.MONTH,   1);  ca.add(Calendar.DAY_OF_MONTH,   -1);  Date   lastDate   =   ca.getTime();   System.ou ...
Global site tag (gtag.js) - Google Analytics