Questions tagged [jibx]

JiBX is a tool for binding XML data to Java objects.

JiBX is a tool for binding XML data to Java objects. It's extremely flexible, allowing you to start from existing Java code and generate an XML schema, start from an XML schema and generate Java code, or bridge your existing code to a schema that represents the same data. It also provides very high performance, outperforming all other Java data binding tools across a wide variety of tests.

Project Homepage: http://jibx.sourceforge.net/

Another useful resource: Jibx Tutorial Part 1 Jibx Tutorial Part 2

185 questions
3
votes
1 answer

Jibx - not able to run with JDK11

Has someone been able to run jibx on Java11 ? Jibx 1.3.1 Bcel 6.4.1 I saw some posts saying that it's running for JDK9, nothing for JDK11. I have the following error : Failed to execute goal org.jibx:maven-jibx-plugin:1.3.1:bind (default) on…
E Kh
  • 105
  • 9
3
votes
1 answer

After update to Java8, getting error during JiBX bind - [bind] java.lang.IllegalStateException: Error loading class java.lang.CharSequence

On my machine, I updated from Java 1.6 to Java 1.8. Now, while doing build getting below JiBXException in JiBX binding compilation. bind: [echo] Running JiBX binding compiler [bind] Error running binding compiler [bind]…
Jatin Gupta
  • 33
  • 1
  • 10
3
votes
1 answer

Marshalling Different Classes with Spring MVC and JIBX

We are trying to build some RESTful services with Spring MVC. We will be providing several representations: XML, HTML, & JSON. We would like to use JiBX as the OXM technology. We are currently having difficulty figuring out how to wire up Spring…
SingleShot
  • 18,821
  • 13
  • 71
  • 101
3
votes
1 answer