`
agu
  • 浏览: 37096 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论
文章列表
 select * from user_constraints where constraint_name='*'
  PermGen space的全称是Permanent Generation space,是指内存的永久保存区域OutOfMemoryError: PermGen space从表面上看就是内存益出,解决方法也一定是加大内存。说说为什么会内存益出:这一部分用于存放Class和Meta的信息,Class在被 Load的时候被放入PermGen space区域,它和和存放Instance的Heap区域不同,GC(Garbage Collection)不会在主程序运行期对PermGen space进行清理,所以如果你的APP会LOAD很多CLASS的话,就很可能出现PermGen space错误。这种 ...
  <s:generator val="mapString" separator="," converter="myConverter" var="map1"/> <s:select name="test" list="map1" listKey="key" listValue="value"/>   public String getMapString() ...
Criteria criteria = getSession().createCriteria(TspcApply.class); if(startdate!=null&&!"".equals(startdate)) { criteria.add(Restrictions.ge("startdate",startdate)); } if(enddate!=null&&!"".equals(enddate)) { cri ...
<validators> <field name="userInfo.uiRealname"> <field-validator type="requiredstring"> <param name="trim">true</param><message>真实姓名不允许为空。</message> </field-validator> <field-validator type="stringlength"> ...
<s:iterator value="fee.tprdFeesubs.{?#this.feetype==1}" status="stat">
<s:property value="descr.length()>68?descr.substring(0,68)+'...':descr"/>
  http://www.kollermedia.at/archive/2007/11/21/the-ultimate-jquery-plugin-list/   File upload Ajax File Upload.jQUploader.Multiple File Upload plugin.jQuery File Style.Styling an input type file.Progress Bar Plugin. Form Validation jQuery Validation.Auto Help.Simple jQuery form validation.jQuer ...
   Struts2.0中有个单元测试的基础类StrutsTestCase 当系统中加入 struts2-spring-plugin-2.0.11.jar的包后, 所有StrutsTestCase 的子类就执行不正常. 例如: Struts2.0中的blank例子 中的 ConfigTest类 代码如下: package example; import com.opensymphony.xwork2.ActionSupport; import com.opensymphony.xwork2.config.RuntimeConfiguration; import com.open ...
一。不脱离Action配置文件的测试: [code="java"] public class TestBaseUploadList extends TestCase { public void testExecuteSuccess() throws Exception { Map session = new HashMap(); User user = new UserImpl(); user.setId(1L); session.put(LoginInterceptor.USER_LOGIN, user); Map params = new HashMap(); param ...
Struts 2.0.9中 客户端验证的显示效果是和服务器验证一样,如果希望用alert方式来显示,swimren 在其一篇帖子中已有提到怎么修改可以实现。 详细请参考 http://www.iteye.com/topic/82991      不过在2.0.9这个版本中修改的话更简单些  只需要改一个文件 form-close-validate.ftl   并将其放在  \classes\template\xhtml\  就可以了   对form-close-validate.ftl 的修改和swimren稍有些不同   修正了int double 和 email类型时 输入为空的时候也验证通 ...
Global site tag (gtag.js) - Google Analytics