- 浏览: 37096 次
- 性别:
- 来自: 深圳
最新评论
-
loveyeah:
http://www.iteye.com/topic/1947 ...
Struts2.0中关于StrutsTestCase 的问题 是否是bug? -
wsligao:
SSH框架没有整合好 在web.xml中加入提示的代码
Struts2.0中关于StrutsTestCase 的问题 是否是bug? -
agu:
已经找到方法:
见 http://www.mxjava. ...
讨论:Struts 2.0.9 中怎样扩展自定义的客户端验证类型
文章列表
select * from user_constraints where constraint_name='*'
- 2009-11-16 10:56
- 浏览 730
- 评论(0)
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错误。这种 ...
- 2009-11-13 15:41
- 浏览 586
- 评论(0)
<s:generator val="mapString" separator="," converter="myConverter" var="map1"/>
<s:select name="test" list="map1" listKey="key" listValue="value"/>
public String getMapString() ...
- 2009-09-09 14:05
- 浏览 2526
- 评论(0)
Criteria criteria = getSession().createCriteria(TspcApply.class);
if(startdate!=null&&!"".equals(startdate))
{
criteria.add(Restrictions.ge("startdate",startdate));
}
if(enddate!=null&&!"".equals(enddate))
{
cri ...
- 2009-09-03 23:54
- 浏览 4891
- 评论(0)
<validators> <field name="userInfo.uiRealname"> <field-validator type="requiredstring">
<param name="trim">true</param><message>真实姓名不允许为空。</message> </field-validator> <field-validator type="stringlength"> ...
- 2009-08-23 14:33
- 浏览 1270
- 评论(0)
<s:iterator value="fee.tprdFeesubs.{?#this.feetype==1}" status="stat">
- 2009-08-19 14:32
- 浏览 1003
- 评论(0)
<s:property value="descr.length()>68?descr.substring(0,68)+'...':descr"/>
- 2009-08-19 14:30
- 浏览 712
- 评论(0)
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 ...
- 2009-05-22 10:24
- 浏览 893
- 评论(0)
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 ...
- 2008-05-20 10:49
- 浏览 1000
- 评论(0)
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类型时 输入为空的时候也验证通 ...