alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Struts example source code file (enterPersonInfo.jsp)

This example Struts source code file (enterPersonInfo.jsp) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Struts tags/keywords

age, age, content-type, dynamically, name, name, object, person, person, populate, see, see, struts, the

The Struts enterPersonInfo.jsp source code

<%@taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Showcase - Conversion - Populate Object into Struts' action List
</head>
<body>

<p/>
An example populating a list of object (Person.java) into Struts' action (PersonAction.java)

<p/>

See the jsp code <s:url var="url" action="showPersonJspCode" namespace="/conversion" />here.
See the code for PersonAction.java <s:url var="url" action="showPersonActionJavaCode" namespace="/conversion" />here.
See the code for Person.java <s:url var="url" action="showPersonJavaCode" namespace="/conversion" />here.
<p/> <s:actionerror /> <s:fielderror /> <s:form action="submitPersonInfo" namespace="/conversion" method="post"> <%-- The following is done Dynamically --%> <s:iterator value="new int[3]" status="stat"> <s:textfield label="%{'Person '+#stat.index+' Name'}" name="%{'persons['+#stat.index+'].name'}" /> <s:textfield label="%{'Person '+#stat.index+' Age'}" name="%{'persons['+#stat.index+'].age'}" /> </s:iterator> <%-- The following is done statically:- --%> <%-- <s:textfield label="Person 1 Name" name="persons[0].name" /> <s:textfield label="Person 1 Age" name="persons[0].age" /> <s:textfield label="Person 2 Name" name="persons[1].name" /> <s:textfield label="Person 2 Age" name="persons[1].age" /> <s:textfield label="Person 3 Name" name="persons[2].name" /> <s:textfield label="Person 3 Age" name="persons[2].age" /> --%> <s:submit /> </s:form> </body> </html>

Other Struts examples (source code examples)

Here is a short list of links related to this Struts enterPersonInfo.jsp source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.