struts
liuwzh
这个作者很懒,什么都没留下…
展开
-
ActionErrors和ActionError的用法
/**ActionErrors和ActionError都是ActionMessage的子类,ActionError存放在 ActionErrors中,ActionError对象中的参数为配置文件中配置的相应的值,若配置文件 中没有配置或配置文件不合适都不能用输出 */ 1.建立配置文件MyResource.property,例如放在com.gsww.property下.在此配置文件中设定所需要的对应值,如: # Resources for parameter 'com.y转载 2010-09-23 09:25:00 · 737 阅读 · 0 评论 -
The order of items in struts-config.xml
<br />1. data sources<br />2. form beans<br />3. global forwards<br />4. action mappings<br />5 controller<br />6. message resources<br />7. plug-in原创 2010-09-30 23:35:00 · 226 阅读 · 0 评论 -
html:password
<br />This element can also be set to be blanked out if the<br />form is redisplayed because of some validation error with the redisplay attribute.<br /><html:password property=”password” redisplay=”true”/>原创 2010-09-30 23:36:00 · 426 阅读 · 0 评论 -
html:checkbox
<br />This tag renders an HTML check box form element, with its state appropriate to the form bean property<br />specified. The form bean should use a boolean type property to denote such values.<br />An interesting problem often associated with a check bo原创 2010-09-30 23:40:00 · 435 阅读 · 0 评论 -
html:select
<br />html:select and html:options<br /><html:select property=”name”><br /><html:options collection=”myList” property=”value” labelProperty=”label”/><br /></html:select><br />This extremely convenient tag combination renders a select list of the objects st原创 2010-09-30 23:44:00 · 313 阅读 · 0 评论 -
logic:iterate
<br />The collection specified must be one of the following:<br />❑ An object that implements the interface java.util.Collection, such as<br />java.util.ArrayList<br />❑ An object that implements the interface java.util.Enumeration, such as<br />java.util.原创 2010-09-30 23:47:00 · 297 阅读 · 0 评论 -
LabelValueBean
<br /> private List getSports()<br /> {<br /> List sports = new ArrayList();<br /> sports.add(new LabelValueBean("Tennis", "Tennis"));<br /> sports.add(new LabelValueBean("Hockey", "Hockey"));<br /> sports.add(new LabelVal原创 2010-10-01 00:29:00 · 410 阅读 · 0 评论 -
两种结合struts和spring的方法
第一种: 以struts的plugin的方式,让spring接管struts的action,至此这些action就存在于spring的配置文件中,并且可以进行任何spring bean的注入.好处就是方便,灵活,然后spring还能用非单例模式来执行action 第二种: 在appfuse看到的.写一个BaseAction,里边加入一些常用方法,比如获得spring的bean的方法 Java代码 1.public Object getBean(String name); {原创 2010-10-19 09:49:00 · 262 阅读 · 0 评论