Jump to content

Apache Jena: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
URL
Rescuing 1 sources and tagging 0 as dead. #IABot (v1.3beta8)
Line 33: Line 33:
*{{Official website}}
*{{Official website}}
*[https://github.com/apache/jena Jena source code (Fuseki in a subdirectory)]
*[https://github.com/apache/jena Jena source code (Fuseki in a subdirectory)]
*[http://pellet.owldl.com/ Pellet reasoner project page]
*[https://web.archive.org/web/20070925082014/http://pellet.owldl.com/ Pellet reasoner project page]
*[http://pellet.owldl.com/faq/single-page#using-pellet-in-jena Using Pellet from Jena with and without the DIG interface]
*[http://pellet.owldl.com/faq/single-page#using-pellet-in-jena Using Pellet from Jena with and without the DIG interface]
*[http://d2rq.org/jena Using D2RQ to map relational database content as RDF]
*[http://d2rq.org/jena Using D2RQ to map relational database content as RDF]

Revision as of 03:01, 21 April 2017

Apache Jena Semantic Web Framework
Developer(s)HP Labs (until October 2009), then Apache Software Foundation
Stable release
3.1.1 / November 4, 2016 (2016-11-04)
Repository
Written inJava
Operating systemCross-platform
PlatformJava Virtual Machine
TypeSemantic Web
LicenseApache License 2.0
Websitejena.apache.org Edit this on Wikidata

Apache Jena is an open source Semantic Web framework for Java. It provides an API to extract data from and write to RDF graphs. The graphs are represented as an abstract "model". A model can be sourced with data from files, databases, URLs or a combination of these. A Model can also be queried through SPARQL 1.1.

Jena is similar to Sesame; though, unlike Sesame, Jena provides support for OWL (Web Ontology Language). The framework has various internal reasoners and the Pellet reasoner (an open source Java OWL-DL reasoner) can be set up to work in Jena.

Jena supports serialisation of RDF graphs to:

Fuseki

Fuseki is an HTTP interface to RDF data. It supports SPARQL for querying and updating. The project is a sub-project of Jena and is developed as servlet. Fuseki can also be run stand-alone server as it ships preconfigured with the Jetty web server.

External links