Showing posts with label Struts. Show all posts
Showing posts with label Struts. Show all posts

Thursday, December 15, 2011

Populating An Array List on Form Submit in Struts 2.0

I always came across situations where I wanted that if there may have been some way to populate a whole list by a form submit. This feature was there with the request.getParameterValues(), but it would always return a String array. I needed this in the following two situations.
  1. Populating a list on form submit (String, int, float, double, boolean)
  2. Populating a list of keys and their values.


Populating a list on form submit:
            This is very simple. Write the following html in a jsp file say index.jsp

            <form action="submitAction.action" method="post">
                  <input type="text" name="idList" /><br>
                  <input type="text" name="idList" /><br>
                  <input type="text" name="idList" /><br>
                  <input type="text" name="idList" /><br>
                  <input type="text" name="idList" /><br>
                  <input type="text" name="idList" /><br>
                  <input type="submit" value="submit">
            </form>

Yes, Struts 2.0 works with normal html tags but they can only be used for submit purposes and not for display. For display, we will have to use <s:property> tag of Struts 2.0 if we want to use html tags.
Now make an action in struts.xml as
  
<action name="view" class="com.soft.struts.actions.SubmitAction" method="execute">
<result name="view" >view.jsp</result>
</action>

Now create a class named SubmitAction.java and declare a list as a private member in the action class and make its getter/setter as.

private List<int> idList;

public List<int> getIdList() {
      return idList;
}

public void setIdList(List<int> idList) {
      this.idList = idList;
}

That’s it in the action class. Now make a method for the action declared in Struts.xml as follows
      public String execute() throws Exception {
            for(int i=0; i<idList.size;i++){
                  System.out.println(idList.get(i));
}
            return "view";
      }
Make a jsp named view.jsp at the root of the application, so that the action forwards request to it.

That’s it. When you run the application and insert values into the text fields of the index.jsp and then press submit. Those values will automatically be inserted into the idList and you will be able to access the list in execute function.

Populating a list of keys and their values:
            This one is a bit tricky. If you want to populate a list of hidden keys and a list of their values, write the following html

<form action="submitAction.action" method="post">
           <input type="hidden" name="keyList" value=”Address1”/><br>
           <input type="text" name="valueList" /><br>

           <input type="hidden" name="keyList" value=”City”/><br>
           <input type="text" name="valueList" /><br>

           <input type="hidden" name="keyList" value=”State”/><br>
           <input type="text" name="valueList" /><br>

           <input type="submit" value="submit">
</form>

In the action class, declare two private lists and make their getters and setters as
     
private List<String> keyList;
      private List<String> valueList;

      public List<String> getKeyList() {
            return keyList;
      }

      public void setKeyList(List<String> keyList) {
            this.keyList = keyList;
      }

      public List<String> getValueList() {
            return valueList;
      }

      public void setValueList(List<String> valueList) {
            this.valueList = valueList;
      }


When you press submit, the keys will be populated into keyList and the values will be populated into valueList in the same order.

I hope it may help someone out there.

Tuesday, April 26, 2011

Struts 2.0 Installation Tutorial

This is a very basic tutorial for the installation of Struts 2.0. This tutorial is intended for newbies and beginners.




  1. First of all download Struts 2.0 at http://apache.mirrors.pair.com//struts/binaries/struts-2.2.1.1-all.zip
  2. Unzip to a folder.
  3. Go to lib folder in it. Copy the following jars and add those to the lib folder in your project as shown in the figure. The jars to be copied are as under.

    1) commons-fileupload-1.2.1.jar
    2) commons-io-1.3.2.jar
    3) freemarker-2.3.16.jar
    4) ognl-3.0.jar
    5) struts2-core-2.2.1.1.jar
    6) xwork-core-2.2.1.1.jar 

  4.  Also make sure that your project contains javassist-3.7.ga.jar. If not, you can download it from here http://mirrors.ibiblio.org/pub/mirrors/maven2/jboss/javassist/3.7.ga/javassist-3.7.ga.jar
  5. Open web.xml and paste the following lines to it.
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">


    <display-name>Struts Blank</display-name>


    <filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>


    <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>


    <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>


    </web-app>
  6. Make a file named struts.xml and place it at the root of the src folder as shown in figure. Copy the following lines to it.
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">


    <struts>
    <package name="default" namespace="/" extends="struts-default">
    <default-action-ref name="index" />
    <action name="view" class="com.soft.struts.actions.ExampleAction" method="execute">
    <result name="view" >view.jsp</result>
    </action>
    </package>


    <!-- Add packages here -->


    </struts>
  7. I have named the action as view. Now we need to make a class named com.soft.struts.actions.ExampleAction.java and a jsp file named view.jsp. So make a package named com.soft.struts.actions.
  8. Create a class named ExampleAction.java and copy the following lines of code to it.

    package com.soft.struts.actions;
    import com.opensymphony.xwork2.ActionSupport;
    public class ExampleAction extends ActionSupport {
    private String message;
    public String execute() throws Exception {
    message="Hello World";
    return "view";
    }
    public String getMessage() {
    return message;
    }
    public void setMessage(String message) {
    this.message = message;
    }
    }

    The action class should always extend com.opensymphony.xwork2.ActionSupport
  9. Now, make a jsp page named view.jsp at the root of the webRoot folder and copy these lines of code.
    <%@ taglib prefix="s" uri="/struts-tags" %>
    <html>
    <head>
    </head>
    <body>
    <s:property value="message"/>
    </body>
    </html>

    To use struts tags we must always have this line in our jsps
    <%@ taglib prefix="s" uri="/struts-tags" %>
  10. Now, we need to make a link to the view.action. So make a jsp named index.jsp, place it at the root of webRoot and copy the following lines to it.
    <html>
    <head>
    <title>index.jsp</title>
    </head>
    <body>
    <a href="view.action">Test the struts action.</a>
    </body>
    </html>
  11. That is it. Now make a war file of it and deploy it to a tomcat server. When you visit index.jsp, you will see a link, click on that link and it will take you to the view.action.

This simple application declares a string named message(getters and setters are necessary) in class ExampleAction.java and shows it on view.jsp through the struts tag <s:property value="message"/>.

Hope it helps someone.