- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在 these xsd files 上执行“xjc”命令返回 Two declarations cause a collision in the ObjectFactory class
因为有 2 个元素名为“Scale”和“scale”。
根据 this page ,可以通过使用 <factoryMethod>
自定义 xsd 文件来解决此问题。 .
你知道怎么做吗?你有绑定(bind)文件的例子吗?
最佳答案
您可以使用绑定(bind)标签。将 schemaLocation 属性设置为特定 xsd 的位置。子标记、schemaBindings 和包,然后为该 xsd 定义一个新的包 namespace 。下面是我刚才使用 xjc 的绑定(bind)文件。如果它仍然有效,那就太好了。如果不是,示例 =)。
<?xml version="1.0" ?>
<bindings xmlns="http://java.sun.com/xml/ns/jaxb" version="2.1"
xmlns:kml="http://www.opengis.net/kml/2.2"
xmlns:atom="http://www.w3.org/2005/Atom">
<bindings schemaLocation="ogckml22.xsd">
<schemaBindings>
<package name="net.opengis.kml"/>
</schemaBindings>
</bindings>
<bindings schemaLocation="kml22gx.xsd">
<schemaBindings>
<package name="net.opengis.kml.ex"/>
</schemaBindings>
</bindings>
<bindings schemaLocation="atom-author-link.xsd">
<schemaBindings>
<package name="org.w3c.atom"/>
</schemaBindings>
</bindings>
<bindings schemaLocation="xAL.xsd">
<schemaBindings>
<package name="org.oasis.xal"/>
</schemaBindings>
</bindings>
<bindings scd="kml:scale">
<class name="scaleliteral"/>
</bindings>
<bindings scd="kml:snippet">
<class name="snippetliteral"/>
</bindings>
<bindings scd="kml:Snippet">
<property name="snippetDeprecated"/>
</bindings>
<bindings scd="atom:link">
<property name="atomLink"/>
</bindings>
</bindings>
关于java - 自定义解决JAXB "name collision in the ObjectFactory class"问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7437891/
我需要从 java 客户端将数据协定传递到我的 wcf web 服务。数据契约(Contract)有 2 个归档,都是字符串。创建代理后,我正在尝试的代码如下 FileTransfer fs = ne
尝试实例化 ObjectFactory 时,我在 Eclipse 中收到以下编译错误: cannot instantiate the type objectfactory 此编译错误在以下行抛出: o
我正在尝试在来自第 3 方的 WSDL 中执行 wsimport(通过 netbeans 6.9.1),但它一直在 JAXB 中生成此错误: Two declarations cause a coll
我定义了以下 ObjectFactory: @XmlRegistry public class ObjectFactory { public Dogs createDogs() {
我有一个使用默认值的 WSDL 文件,我想生成 ObjectFactory 类,这些类使用 CXF 创建具有这些默认值的方法。例如,我有一个这样定义的对象
我正在使用 docx4j 创建一个 Word 文档,并且需要设置“标题”的样式,但是,我找不到执行此操作的正确函数。 private static P createIt() { org.doc
我尝试在结构图中注册命名实例。但是我的试验没有成功。 正确的做法是什么? 目前我是这样做的: IService bus = CreateInstanceOfServiceBus(); ObjectFa
使用 AngularFire,我正在扩展对象工厂,以便封装数据并允许特定功能,如 official tutorial 中所述。 .我有一个如下的数据结构: { 'articles': {
我正在创建一个 JAXBElement具有 ObjectFactory 的元素. 该对象是使用 null 创建的值,因为该字段的架构表明它有一个 nillable属性。 在编码到 xml 期间,输出文
我有两个 xsd 导入到主 xsd 中。两者具有相同的元素,但命名空间不同。因此,我为第二个 xsd(B.xsd) 创建了自定义绑定(bind)。我仍然收到“两个声明导致 ObjectFactory
我正在使用 JAXB 为导入其他模式的模式生成类。我正在使用 maven 并将 maven-jaxb2 插件配置为使用依赖项作为情节,跳过为导入的模式生成类。 然而,JAXB 不断为导入的模式生成 O
我使用 StructureMap 实现了接口(interface)注入(inject),如下所述。 ObjectFactory.Initialize(x => { x.For().Use(); });
要在 GlassFish Server 开源版 3.1.1(内部版本 12)中部署: Caused by: java.security.PrivilegedActionException: com.s
我有一个大型应用程序,它使用使用 ObjectFactory.GetInstance() 获取实例的旧方法。 现在我想将应用程序转移到使用构造函数注入(inject)注入(inject)依赖项的更正确
这是重现问题的简单测试,这是整个项目中的单个类,没有其他引用: [TestFixture] public class ObjectFactoryTests { [Test] publi
在使用最新的 StructureMap 版本 (3.1.6.191) 升级我们的解决方案后,我收到了很多过时的警告。这些警告来自 StructureMap,其中 ObjectFactory 类将在未来
我正在尝试制作网络服务,但我遇到了两种情况。 xsd 文件有两种类型,第一种是:
我正在开发一个工厂,它可以使用 Class 参数实例化 Skill 类型的对象。该工厂的代码是: public static final class AbilityFactory { priv
我有一个 XSD 选择,它们都是 javax.xml.datatype.XMLGregorianCalendar 类型。按照建议,我使用了 ObjectFactory 和 JAXBElement 来区
我们已经在我们的系统中使用 JAXB 2.1 很长时间了。我们有一个使用 Ant 构建的平台,并生成一堆部署在 OSGi 运行时中的包。我们使用 Java SE 6。 我们在构建过程中使用 JAXB
我是一名优秀的程序员,十分优秀!