• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Dropdown creation dynamically from DB lookup

 
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I am trying to create a dropdown menu on using struts2 .
I am implementing the UI on jsp with struts taglib.

Now I want to populate the data on the dropdown froma database.
For this I have used the following and created an arraylist



The action for the above submit form is



However I am getting the following error




Please suggest me where I am going wrong.

 
Ranch Hand
Posts: 42
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
boss you are uing MVC architecture why you are performing "database operations" on your view. i would suggest you to create an action first and you must create a list in its execute function. and
1. you must declare a "List Type Variable" hardware list.2. Fill the list as you have filled in your UI.
3. then create setter and getter for that List variable "hardwarelist".
4. after that you can set <s:select list="hardwarelist" headerKey="0" headerValue="Select Device" />
this will work



Remember list attribute of select will be same as the list variable name you declar in your action.


Do not forget to make entry in Struts.xml as:

<action name="Your cation in which you have mak your list" class="the action class">
<result name="success">YourJsp Page</result>

</action>
 
reply
    Bookmark Topic Watch Topic
  • New Topic