1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
<?xml version="1.0"?>
<document url="http://jaxen.org/index.xml">
<properties>
<author email="bob.mcwhirter@redhat.com">bob mcwhirter</author>
<title>jaxen</title>
</properties>
<body>
<p> Jaxen is an open source XPath library written in
Java. It is adaptable to many different object models,
including DOM, XOM, dom4j, and JDOM. Is it also possible
to write adapters that treat non-XML trees such as
compiled Java byte code or Java beans as XML, thus
enabling you to query these trees with XPath too. </p>
<p>
The current version is <strong>1.1.6</strong>.
</p>
<P>Jaxen's Maven group ID is <code>jaxen</code> and its artifact ID is <code>jaxen</code>. To add a dependency on jaxen using Maven, add this <code>dependency</code> element to your pom.xml:</P>
<pre><code><dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.1.6</version>
</dependency></code></pre>
To add a dependency using Gradle:
<pre><code>gradle
dependencies {
compile 'jaxen:jaxen:1.1.6'
}</code></pre>
<p>You can also download the binaries directly from this site:</p>
<ul>
<li><a href="dist/jaxen-1.1.6.zip">1.1.6 binaries in zip format.</a></li>
<li><a href="dist/jaxen-1.1.6.tar.gz">1.1.6 binaries in tar/gz format.</a></li>
<li><a href="dist/jaxen-1.1.6-src.zip">1.1.6 sources in zip format.</a></li>
<li><a href="dist/jaxen-1.1.6-src.tar.gz">1.1.6 sources in tar/gz format.</a></li>
</ul>
<section name="Getting Started">
<p>You browse the
<a href="faq.html">FAQ</a> or the online
<a href="apidocs/index.html">JavaDoc</a>.
</p>
</section>
<section name="News">
<p>
<a href="http://www.xom.nu/">XOM 1.2.9</a> bundles Jaxen 1.1.6.
</p>
<p>
Sun chose Jaxen for the XPath engine for the <acronym title="Java Server Pages">JSP</acronym>
Standard Tag Library (<acronym>JSTL</acronym>) and the Java Web Services Developer Pack 1.0 and 1.1.
</p>
<p>
Since the reference implementation of
Java API for XML Messaging
is based on <a href="http://dom4j.org">dom4j</a> and Jaxen, you can use
Jaxen to query SOAP messages on the Java platform too!
</p>
<p>
Check out Elliotte Rusty Harold's book chapter on XPath and
<a href="http://cafeconleche.org/books/xmljava/chapters/ch16s07.html">Jaxen</a>
</p>
<p>
Alex Chaffee wrote
<a href="http://sourceforge.net/projects/xpe">XPath Explorer</a>
to help visualize results of XPath expressions.
</p>
</section>
</body>
</document>
|