gpt4 book ai didi

java - struts2 和 jaxb(适用于高于 2.0.x 的 struts2 版本)

转载 作者:太空宇宙 更新时间:2023-11-04 07:37:05 25 4
gpt4 key购买 nike

是否有某种类似于 struts2-jaxb-plugin 的插件适用于高于 2.0.x 版本的 struts2 版本?

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

如果有更好的方法使用 struts2 实现 xml 结果,请随时为我指出正确的方向。

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

当前版本:

  • struts2:2.3.14
  • jaxb-api:2.2.9

最佳答案

刚刚编写了我自己的 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>

关于java - struts2 和 jaxb(适用于高于 2.0.x 的 struts2 版本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16687232/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com