我需要知道如何使用Struts2维护一个表单和多个输入[Name,City,Country]的会话,最后使用hibernate将数据存储到数据库中。
此表单有两个按钮:
首先,输入表格详细信息[姓名城市和国家],然后点击添加按钮数据将存储到会话。
其次,输入相同的详细信息,然后点击添加。
第三,输入相同的表单详细信息但现在单击提交按钮所有详细信息(第一个和第三个)将使用hibernate存储到数据库。
请帮助我解决问题...
Person.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;
}
}
Database.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>
person.jsp:
<body>
<s:property value="#session.name"/>
</body>
答案 0 :(得分:1)
首先阅读Best Practices When Using SessionAware
我会给你提示,Struts2遵循MVC pattern
(或这种模式的变体)。所以你有了你的Presentation层,在那里你向你的Controller发送一个事件(PersonAction),你必须在这里与你的模型(业务层数据库,Person)进行通信,模型返回或者没有给控制器,控制器决定要显示什么
您的问题是您要向PersonAction
发送DataBase
,您必须发送与hibernate映射的Person
:)。
并尝试不使用静态方法导致这种情况,如果您在并发应用程序中,许多用户将访问该方法saveData
这很糟糕
for (Person p : personList)
Database.saveData(this);
你必须做这样的事情
Database.saveData(personList);
在Database类中定义一个方法
public static int saveData(List<Person> person)
同样在Person
课程中,您必须映射名称属性
注意我不建议使用静态方法来处理这类事情
答案 1 :(得分: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);
答案 2 :(得分:0)
按如下方式构建SessionFactory。
sessionFactory = new Configuration().configure().buildSessionFactory();