0

struts 2 アプリケーションでコードを書きましたが、すべて正常に動作していますが、succecc.jsp ページで属性を取得していません。どこが間違っているのか教えてください...

私のアクションクラスは

package action;

import java.util.Map;

import org.apache.struts2.interceptor.SessionAware;

import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;

import dao.Empdao;
import model.Empmodel;
public class Empaction extends ActionSupport implements ModelDriven<Object>,SessionAware{

private static final long serialVersionUID = 1L;
    Empmodel modelobj;
    Map<String, Object> map;
    public String execute() throws Exception{
        map.put("a", modelobj.getFirstname());
        Empdao empdao = new Empdao();
        int queryResult = empdao.registration(modelobj);
        if (queryResult==0)
        {   
          addActionError("it is a dublicate entry please enter anothe id");
              return ERROR;
        }   
        else{   
         return SUCCESS;    
         }
}

    @Override
    public Object getModel() {
    modelobj = new Empmodel();
    return null;
    }

    @Override
    public void setSession(Map<String, Object> map) {
        // TODO Auto-generated method stub
        this.map =map;
    }

struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
       "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
       "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
    <constant name="struts.enable.DynamicMethodInvocation" value="true" />
    <constant name="struts.devmode" value="true" />
<package name="loginmodel" extends="struts-default">
    <action name="emplogin" class="action.Empaction">
        <result name="input">/Registration/empregistration.jsp</result>
        <result name="success">/Registration/success.jsp</result>
        <result name="error">/Registration/empregistration.jsp</result>
    </action>
</package>
</struts>

success.jsp は

<%@ taglib uri="/struts-tags" prefix="s"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
    Registration successful
    <s:property value="#session.a" />
</body>
</html>

従業員モデル クラス

package model;

public class Empmodel {
private String firstname;
private String lastname;
private String id;
private String gender;
private String dob;
private String maritalstatus;
private String email;
private String joiningdate;
private String designation;
private String address;
private String country;
private String state;
private String city;
private int  pincode;
private long mobileno;
private String groups;
public String getFirstname() {
    return firstname;
}
public void setFirstname(String firstname) {
    this.firstname = firstname;
}
public String getLastname() {
    return lastname;
}
public void setLastname(String lastname) {
    this.lastname = lastname;
}
public String getId() {
    return id;
}
public void setId(String id) {
    this.id = id;
}
public String getGender() {
    return gender;
}
public void setGender(String gender) {
    this.gender = gender;
}
public String getDob() {
    return dob;
}
public void setDob(String dob) {
    this.dob = dob;
}
public String getMaritalstatus() {
    return maritalstatus;
}
public void setMaritalstatus(String maritalstatus) {
    this.maritalstatus = maritalstatus;
}
public String getEmail() {
    return email;
}
public void setEmail(String email) {
    this.email = email;
}
public String getJoiningdate() {
    return joiningdate;
}
public void setJoiningdate(String joiningdate) {
    this.joiningdate = joiningdate;
}
public String getDesignation() {
    return designation;
}
public void setDesignation(String designation) {
    this.designation = designation;
}
public String getAddress() {
    return address;
}
public void setAddress(String address) {
    this.address = address;
}
public String getCountry() {
    return country;
}
public void setCountry(String country) {
    this.country = country;
}
public String getState() {
    return state;
}
public void setState(String state) {
    this.state = state;
}
public String getCity() {
    return city;
}
public void setCity(String city) {
    this.city = city;
}


public long getMobileno() {
    return mobileno;
}
public void setMobileno(long mobileno) {
    this.mobileno = mobileno;
}
public String getGroups() {
    return groups;
}
public void setGroups(String groups) {
    this.groups = groups;
}
public int getPincode() {
    return pincode;
}
public void setPincode(int pincode) {
    this.pincode = pincode;
}

}
4

2 に答える 2

2

最初にアクションを修正する必要があります。使用のアイデアはModelDriven、モデルをスタックにプッシュすることですnull。それがあなたがそれを使用しているすべてである場合は、それ
を取り除くこともできます。SessionAware

public class Empaction extends ActionSupport implements ModelDriven<Empmodel> {

    private static final long serialVersionUID = 1L;
    Empmodel modelobj = new Empmodel();

    public String execute() throws Exception {

        Empdao empdao = new Empdao();

        int queryResult = empdao.registration(modelobj);

        if (queryResult == 0) {
            addActionError("it is a dublicate entry please enter anothe id");
            return ERROR;
        } else {

            return SUCCESS;
        }
    }

    @Override
    public Empmodel getModel() {
        return modelobj;
    }
}

今あなたEmpmodelはの一番上にいるValueStackので、これはうまくいきます:

<s:property value="%{firstName}"/>

ModelDrivenInterceptorがインターセプター スタック上にあることを確認します。

于 2013-02-23T12:48:21.203 に答える
0

なぜセッションを使用するのか、valuestackを使用してこれを達成できる場合、これを達成するための多くの方法があります

ognlを使用する

<s:property value="modelobj.firstname "/>

スクリプトレットを使用する

<%
String fName=(String)session.getAtribute("a");

%>
于 2013-02-23T12:39:40.903 に答える