jaxb-v2
jaxb-v2 copied to clipboard
[ImgBot] optimizes images *Total -- 295.23kb -> 218.24kb (26.08%) /jaxb-ri/xjc/src/main/javadoc/com/sun/tools/xjc/reader/xmlschema/doc-files/binding_chart.png -- 41.62kb -> 14.13kb (66.04%) /jaxb-ri/docs/release-documentation/src/docbook/icons/annot-open.png -- 0.82kb -> 0.33kb (59.14%) /jaxb-ri/xsom/doc/collaboration.png -- 4.05kb -> 1.83kb (54.71%) /jaxb-ri/xsom/doc/architecture.png -- 2.71kb...
This issue was previously reported via https://bugs.openjdk.java.net/browse/JDK-8197490 A DESCRIPTION OF THE REQUEST : This enhancement request is to improve Java code generation for XML Bindings in order to support version...
Hello, there was a fix for the problem "Fix XJC ant task to work without fork. " created with this commit: https://github.com/javaee/jaxb-v2/commit/dad8495f19078cb05302132f83dafda5b3dfa98b#diff-9e91db6a172b85bd4a5588d9aa151e85 We checked the released versions of jaxb and...
Try downloading all of the XML Schema files from the web page linked above and then run xjc on CDA.xsd to generate the equivalent Java code. It will fail with...
Can you please publish the Maven Coordinates to be used for the following distinct cases? * Maven Dependency on JAXB API (for _compilation_) * Maven Dependency on JAXB RI (for...
When a (anonymous) schema document is (syntactically) included in more than one other schema document, global bindings specified in a seperate binding document can cause a failure: >> only one...
With Java 9 or 10, using ``` org.glassfish.jaxb jaxb-runtime 2.3.0 ``` results in: ``` WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by com.sun.xml.bind.v2.runtime.reflect.opt.Injector (file: repository/org/glassfish/jaxb/jaxb-runtime/2.3.0/jaxb-runtime-2.3.0.jar)...
i'm not sure if the hasSubClasses() is enough in all cases. perhaps there should be a general way to disable this optimization on demand/fallback (system-property). it works in my case...
have two separate packages com.company1.doc and com.company2.doc every package contains namespace definition (in package-info.java): @javax.xml.bind.annotation.XmlSchema(namespace = "http://company1.com/doc") package com.company1.doc; and @javax.xml.bind.annotation.XmlSchema(namespace = "http://company2.com/doc") package com.company2.doc; I initialize JAXBContext using JAXBContext.newInstance("com.company1:com.company2");...