1

是否有像 struts2-jaxb-plugin 这样的插件适用于高于 2.0.x 版本的 struts2 版本?

较新版本的 struts2 在 com.opensymphony.xwork2.ActionContext 类上不再有 get(Object o)。

如果有更好的方法来使用 struts2 完成 xml 结果,请随时为我指明正确的方向。

否则,我正在考虑编写自己的编组拦截器和 jaxb 结果类型,就像 struts2-jaxb-plugin 中发生的那样。

当前版本:

  • 支柱2:2.3.14
  • jaxb api:2.2.9
4

1 回答 1

1

刚刚写了我自己的 jaxb 结果类型。这比我想象的要容易。

把它留在下面给那些寻找类似东西的人:

import java.io.IOException;
import java.io.Writer;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.Result;
import com.opensymphony.xwork2.util.ValueStack;

public class JaxbResult implements Result {
    private static final long serialVersionUID = -5195778806711911088L;
    public static final String DEFAULT_PARAM = "jaxbObjectName";

    private String jaxbObjectName;

    public void execute(ActionInvocation invocation) throws Exception {
        Object jaxbObject = getJaxbObject(invocation);
        Marshaller jaxbMarshaller = getJaxbMarshaller(jaxbObject);
        Writer responseWriter = getWriter();

        setContentType();
        jaxbMarshaller.marshal(jaxbObject, responseWriter);
    }

    private Writer getWriter() throws IOException {
        return ServletActionContext.getResponse().getWriter();
    }

    private Marshaller getJaxbMarshaller(Object jaxbObject) throws JAXBException {
        JAXBContext jaxbContext = JAXBContext.newInstance(jaxbObject.getClass());
        Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
        jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);

        return jaxbMarshaller;
    }

    private Object getJaxbObject(ActionInvocation invocation) {
        ValueStack valueStack = invocation.getStack();

        return valueStack.findValue(getJaxbObjectName());
    }

    private void setContentType() {
        ServletActionContext.getResponse().setContentType("text/xml");
    }

    public String getJaxbObjectName() {
        return jaxbObjectName;
    }

    public void setJaxbObjectName(String jaxbObjectName) {
        this.jaxbObjectName = jaxbObjectName;
    }
}

struts-xml 中的配置如下所示:

<result-types>
    <result-type name="jaxb" class="JaxbResult" />
</result-types>

<action name="testaction" class="TestAction">
    <result name="success" type="jaxb" >jaxbObject</result>
</action>
于 2013-05-22T13:07:50.817 回答