Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Book table and a Categories table. The Categories table has a categoryNo which is a foreign key in the Books table. For each catogory there are a list of books. I want to display the books in my jsp for each category. In Struts2 I have done it by using tag which iterates Categories object. For each iteration I have fired an Action passing categoryNo as a request parameter using tag. Which retrieves the Book List object for that particular category.

Now the problem is I am trying to implement the same using struts1 but I cannot find something equivalent to tag.

To explain it more elaborately. I am displaying the Category. Say Networking is a category under which I have three books:

1) Network Fundamentals 2) Networking Concepts 3) Network Guide Also say Language is a category under which I have two books: 1) Let us C. 2) Java for Beginners Category is a table which contains cateoryId and categoryName Book is a table which contains bookNo, bookName and categoryId as a foreign key.

Now in my jsp I am going to display heading as categoryName(say Networking) from Category table which will contain the bookName(i.e 1) Network Fundamentals 2) Networking Concepts 3) Network Guide). Again for Language category 1) Let us C 2) Java for Beginners. And the form will be populated automatically. So, I cannot use any Submit button to trigger the Action.

<logic:iterate id="cat" name="myActionForm" property="catogory">    
//In this line I want to fire an action which will load the book object from the database for each catogory collecting categoryNo as request patrameter.    
         <logic:iterate id="boo" name="myActionForm" property="book">    
                           //Some lines of code here.    
         </logic:iterate>    
</html:iterate>  

So, line number 1 populates the category object. In line number 2 categoryId(say categoryId of 'Networking') will determine which books (i.e 1) Network Fundamentals 2) Networking Concepts 3) Network Guide) to fetch from the database and populate the books object.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.