Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 249023
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:23:30+00:00 2026-05-11T21:23:30+00:00

I want to populate a map property on a Struts2 action from a JSP.

  • 0

I want to populate a map property on a Struts2 action from a JSP. What is the format of the data names that I should use? Initially I am interested in populating a Map<String, String> but in the future I would be interesting in populating a Map<String, DomainClass> where the DomainClass has properties of its own.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T21:23:30+00:00Added an answer on May 11, 2026 at 9:23 pm

    I have an action, with a property as follows –

    private Map<String,String> assetProps;
    ...
    public Map<String, String> getAssetProps() {
        return assetProps;
    }
    
    public void setAssetProps(Map<String, String> assetProps) {
        this.assetProps = assetProps;
    }
    

    To set values onto the map, there are basically two steps. First off, OGNL can’t instantiate the map, so it is up to you. In my action, I implement the Preparable interface, but instantiate it before running the ‘public String input()’ method as follows –

    public class EditAction extends ActionSupport implements Preparable {
    ...
        public void prepare() {
            // just satisfying Preparable interface so we can have prepareInput()
    
        }
    
        public void prepareInput() throws Exception {
            assetProps = new HashMap<String,String>();
        }
    

    Now, the object is non-null, I can use syntax similar to the following in the JSP –

      <s:iterator value="asset.properties" var="prop">
        <sjx:textfield name="%{'assetProps[\\'' +#prop.propName +'\\']'}" 
               value="%{#prop.propValue}" 
               label="%{#prop.propName}" size="25"/>
      </s:iterator>
    

    The iterator pulls a set of objects off the stack and iterates over it. The important part is the “name=” section, notice the double-escaped single quotes. That way, when the page renders, the name of the input element becomes (for example) – assetProps[‘Screen Size’]. When the page is submitted, inside the “public void execute()” method, assetProps is fully populated.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to populate a Google Map with markers from locations stored in a
I want to populate my database with test data my user and profile models
I want to populate a drop down menu with a column from a MySQL
I want to populate a select list such that it increments for each 5
When i want to populate my grid I use this Select command : SELECT
I have nested containers std::map<int, std::map<T, U> > and want to populate them properly,
I have a DataGridView control and I want to populate it with data. I
I am trying to map create a result map that will populate vehicleVO. I
I'm using play-2.0.3. I have a Map and want to populate dropdown-list with Int->String
I have 2 variables in parameters map populated from a struts2 tag, as follows:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.