gpt4 book ai didi

Java 调用 Web 服务不更新 boolean 属性

转载 作者:行者123 更新时间:2023-12-01 04:49:53 25 4
gpt4 key购买 nike

场景:我正在开发一个 Swing 应用程序,它连接到 .NET (WCF) 创建的 Web 服务。有一些问题,但现在大部分已解决。但是,我似乎无法更新 boolean 属性。在我的实体中,我有一个 boolean 属性 Gender :

真实=男性,

假=女性,

Null = 未知/未指定。

代码:

updatedEntry.setGender(factory.createBoolean(true));

在这里,factory只是 ObjectFactory 的一个实例Netbeans 为我生成的类。 updatedEntry类型为JAXBElement<Boolean>我可以看到该值确实设置为 True。更新方法运行良好,没有任何错误,但后来我看到数据库有 NULL对于该专栏。这很奇怪,因为其他列更新得很好。

为了确保我的网络服务没有问题,我使用了 SoapUI 并手动输入参数......它工作得很好。我注意到的一件事是我无法使用字符串 True ,但必须输入 1让它发挥作用。这让我想知道;是JAXBElement或我的 Netbeans 中生成的一些其他代码项目发送的值为 true而不是1 ?不过,如果是这样的话,为什么当我尝试这样做时 SoapUI 会抛出错误,但是 Netbeans没有?就像我说的..来自 Netbeans ,所有属性都已更新除了性别。

有什么方法可以查看由 Netbeans 生成的 Soap XML 吗?或者有人有任何想法...,以前见过这个问题吗?

最佳答案

下面是一个有帮助的示例。

XML 架构 - schema.xsd

您将获得 JAXBElement<Boolean> 类型的属性当你有一个元素同时是 nillable="true"minOccurs="0" .

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/schema"
xmlns:tns="http://www.example.org/schema"
elementFormDefault="qualified">

<element name="root">
<complexType>
<sequence>
<element name="trueValue" type="boolean" minOccurs="0" nillable="true"/>
<element name="falseValue" type="boolean" minOccurs="0" nillable="true"/>
<element name="nullValue" type="boolean" minOccurs="0" nillable="true"/>
<element name="notSetValue" type="boolean" minOccurs="0" nillable="true"/>
</sequence>
</complexType>
</element>

</schema>

生成的模型 - 根

下面是从 root 生成的类元素可能看起来像:

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {"trueValue", "falseValue", "nullValue", "notSetValue"})
@XmlRootElement(name = "root")
public class Root {

@XmlElementRef(name = "trueValue", namespace = "http://www.example.org/schema", type = JAXBElement.class, required = false)
protected JAXBElement<Boolean> trueValue;
@XmlElementRef(name = "falseValue", namespace = "http://www.example.org/schema", type = JAXBElement.class, required = false)
protected JAXBElement<Boolean> falseValue;
@XmlElementRef(name = "nullValue", namespace = "http://www.example.org/schema", type = JAXBElement.class, required = false)
protected JAXBElement<Boolean> nullValue;
@XmlElementRef(name = "notSetValue", namespace = "http://www.example.org/schema", type = JAXBElement.class, required = false)
protected JAXBElement<Boolean> notSetValue;

}

生成模型 - ObjectFactory

@XmlRegistry
public class ObjectFactory {

private final static QName _RootNullValue_QNAME = new QName("http://www.example.org/schema", "nullValue");
private final static QName _RootTrueValue_QNAME = new QName("http://www.example.org/schema", "trueValue");
private final static QName _RootFalseValue_QNAME = new QName("http://www.example.org/schema", "falseValue");
private final static QName _RootNotSetValue_QNAME = new QName("http://www.example.org/schema", "notSetValue");

public ObjectFactory() {
}

public Root createRoot() {
return new Root();
}

@XmlElementDecl(namespace = "http://www.example.org/schema", name = "nullValue", scope = Root.class)
public JAXBElement<Boolean> createRootNullValue(Boolean value) {
return new JAXBElement<Boolean>(_RootNullValue_QNAME, Boolean.class, Root.class, value);
}

@XmlElementDecl(namespace = "http://www.example.org/schema", name = "trueValue", scope = Root.class)
public JAXBElement<Boolean> createRootTrueValue(Boolean value) {
return new JAXBElement<Boolean>(_RootTrueValue_QNAME, Boolean.class, Root.class, value);
}

@XmlElementDecl(namespace = "http://www.example.org/schema", name = "falseValue", scope = Root.class)
public JAXBElement<Boolean> createRootFalseValue(Boolean value) {
return new JAXBElement<Boolean>(_RootFalseValue_QNAME, Boolean.class, Root.class, value);
}

@XmlElementDecl(namespace = "http://www.example.org/schema", name = "notSetValue", scope = Root.class)
public JAXBElement<Boolean> createRootNotSetValue(Boolean value) {
return new JAXBElement<Boolean>(_RootNotSetValue_QNAME, Boolean.class, Root.class, value);
}

}

演示

下面是一些演示代码,将填充每个 JAXBElement<Boolean>以不同的方式展示 4 个可能选项中的每一个属性。

public class Demo {

public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance("forum15170433");

Root root = new Root();
ObjectFactory objectFactory = new ObjectFactory();

// set the value to true
root.setTrueValue(objectFactory.createRootTrueValue(true));

// set the value to false
root.setFalseValue(objectFactory.createRootFalseValue(false));

// set the value to null
root.setNullValue(objectFactory.createRootNullValue(null));

// specify the value is unset
root.setNotSetValue(null);

Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(root, System.out);
}

}

输出

下面是运行演示代码的输出。我们看到xsi:nil属性用于表示null值和未设置的值未编码。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root xmlns="http://www.example.org/schema">
<trueValue>true</trueValue>
<falseValue>false</falseValue>
<nullValue xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</root>

关于Java 调用 Web 服务不更新 boolean 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15170433/

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