私は豆を持っています
@XmlRootElement(name = "alpha")
public class MyBean {
private String thetaValue;
@XmlPath("beta/theta/text()")
public String getThetaValue() {
return this.thetaValue;
}
public void setThetaValue(String thetaValue) {
this.thetaValue = thetaValue;
}
}
これは、eclipselink moxy jaxb を使用して注釈が付けられています。同じ Bean と Xpath を使用して Web サービスをホストしたいと考えています。どうすればいいですか?Web サービスは tomcat 6 または 7 でホストされます