-1

我需要知道如何使用 Struts2 维护一个表单和多个输入 [Name,City,Country] 的会话,最后数据将使用休眠存储到数据库中。

此表单有两个按钮:

  • 添加(存储到会话);
  • 提交(存储到数据库)。
  • 首先,输入表单详细信息[名称城市和国家],然后单击添加按钮数据将存储到会话。

  • 其次,输入相同的详细信息,然后单击添加。

  • 第三,输入相同的表单详细信息,但现在单击提交按钮,所有详细信息(第一个第二个和第三个)将使用 hibernate 存储到数据库中。

请帮我解决问题...

人.java:

 @Entity
    public class Person {
        @Id
        @GeneratedValue
        private int id;
        private String name;
        public int getId() {
            return id;
        }
        public void setId(int id) {
            this.id = id;
        }
        public String getName() {
            return name;
        }
        public void setName(String name) {
            this.name = name;
        }
    }  

PersonAction.java:

public class PersonAction extends ActionSupport implements SessionAware {

      private Person person = new Person();
     // Database base=new Database();

      public Person getPerson() {
        return person;
      }

      public void setPerson(Person person){
        this.person = person;
      }

      private Map<String, Object> session;

      public void setSession(Map<String, Object> session){
        this.session = session;
      }

      public String execute() { //Create persons
        List<Person> personList = (List<Person>) session.get("personList");
        for (Person p : personList)
        Database.saveData(this);
        personList.clear();
        return SUCCESS;
      }

      public String add() { //Add person
        List<Person> personList = (List<Person>) session.get("personList");
        if (personList == null) {
          personList = new ArrayList<Person>();
          session.put("personList", personList);
          System.out.println("Successfully added");
        }
        personList.add(person);
        return SUCCESS;

      }

    } 

数据库.java:

public class Database {
public static int saveData(PersonAction personAction){
        SessionFactory sf=new AnnotationConfiguration().configure().buildSessionFactory();
        Session session=sf.openSession();
        Transaction tran=session.beginTransaction();
    int i=(Integer)session.save(personAction);
    tran.commit();
    session.close();
    return i;

    }
}   

struts.xml:

<struts>
    <package name="default" extends="struts-default">
        <action name="person" class="org.PersonAction">
            <result>/person.jsp</result>
        </action>
        <action name="person" class="org.PersonAction" method="add">
            <result>/person.jsp</result>
        </action>
    </package>
</struts> 

index.jsp:

<s:form action="person">
    <s:textfield label="Enter your name" name="name"/>
    <s:submit value="Add person" method="add"/>
    <s:submit value="Create persons"/>
</s:form> 

人.jsp:

<body>
<s:property value="#session.name"/>
</body>
4

3 回答 3

1

首先阅读使用 SessionAware 时的最佳实践

我会给你提示,Struts2 遵循MVC pattern(或这种模式的变体)。所以你有你的表示层,在那里你向你的控制器(PersonAction)发送一个事件,在这里你必须与你的模型(业务层数据库,Person)进行通信,模型返回或不向控制器返回一些东西,控制器决定显示什么.

您的问题是您要发送PersonAction到您的DataBase ,您必须发送Person与休眠映射的 :)。并尽量不要使用静态方法,因为如果您在并发应用程序中,许多用户将访问该方法saveData

这是不好的

 for (Person p : personList)
            Database.saveData(this);

你必须做这样的事情

Database.saveData(personList);

并在 Database 类中定义一个方法

public static int saveData(List<Person> person)

同样在您的Person班级中,您必须映射名称属性

注意我不建议对这类事情使用静态方法

于 2013-06-12T04:24:35.380 回答
0

在动作类中使用以下方法

/**
     * Convenience method to get the request.
     * @return current request
     */
    protected HttpServletRequest getRequest() {
    return ServletActionContext.getRequest();
    }

    /**
     * Convenience method to get the response.
     * @return current response.
     */
    protected HttpServletResponse getResponse() {
    return ServletActionContext.getResponse();
    }

    /**
     * Convenience method to get the session. This will create a session if one
     * doesn't exist.
     * @return the session from the request (request.getSession()).
     */
    protected HttpSession getSession() {
    return getRequest().getSession();
    }

你可以在执行方法中使用这段代码

 getRequest().getSession().setAttribute("projectData", scheduleData);
于 2013-06-12T04:23:26.430 回答
0

如下构建您的 SessionFactory。

sessionFactory = new Configuration().configure().buildSessionFactory();
于 2013-06-12T04:36:58.433 回答