| Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML | ||||
|
||||
|
|
||||
| Tutorial Categories: Ajax
| Articles
| JSP
| Bioinformatics
| Database
| Free
Books |
Hibernate
| J2EE
| J2ME
| Java
| JavaScript
| JDBC
| JMS
| Linux
| MS
Technology |
PHP
| RMI
| Web-Services
| Servlets
| Struts
| UML
|
|
||||||||||||||||||||||||||||||
|
Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs |
||||||||||||||||||||||||||||||
Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.
Copyright © 2007. All rights reserved.
Current Comments
1 comments so far (post your own) View All Comments Latest 10 Comments:@Validation
public class PostItemAction extends ActionSupport implements ModelDriven
Item item;
//getter setters of item
@Validations(
requiredStrings={
@RequiredStringValidator(type = ValidatorType.SIMPLE, fieldName = "item.itemName", message = "", key = "errorItemNameRequired"),
@RequiredStringValidator(type = ValidatorType.SIMPLE, fieldName = "item.itemdescription", message = "", key= "errorItemDescriptionRequired"), @RequiredStringValidator(type = ValidatorType.SIMPLE, fieldName = "amount", message = "", key= "errorStartPriceRequired")
}
)
public String sellItem(){
return SUCCESS;
}
}
------------------
Where
item.itemName--> item is object of Item.java (simple pojo or talking to db..)
itemName is field of ItemVo
-------------------
public class Item{
String name;
String description;
String amount;
//getters setters
}
---------------------
key -->errorItemNameRequired-->you have in Resource file
--------- JSP contains .. something like----------
<s:form action="PostItemAction_sellItem">
<s:textfield name="item.itemName" />
<s:textfield name="item.itemdescription" />
<s:datetimepicker name="item.startDate" />
</s:form>
--------- strust.xml -----------
<action name="PostItemAction_*" method="{1}" class="com.action.PostItemAction">
<result>/item/yourother.jsp</result>
</action>
Posted by Pinki on Wednesday, 10.15.08 @ 11:39am | #81091