JAVA Support for Semantic Web

Make java support for semantic webservices.Any apis available for this.

+3
source share
4 answers

There are no standard Java APIs for the semantic network; e.g. triple storage access, request, etc. You basically have two alternatives for “creating semantic web content” in Java:

  • You can talk with a ready-made SPARQL server using a standardized query language via HTTP. The problem is that SPARQL does not provide a way to add, update, or delete triples.
  • ( ) API Java . Sesame Jena, , , .

IMO, , W3C Sun Java API , , RDF/.

+2
0

API - .

API , :

- Apache Jena

Apache Clerezza

clerezza:

  • OSGi
  • -
  • JSR 223
  • API RDF
  • SPARQL

Apache Stanbol

  • RESTful
  • Services that add semantic information to non-semantic pieces of content.

    • Another interesting open source API - Linked Media Framework
0
source

I will add Apache Marmotta to the list, a selection project from Related Media .

0
source

Source: https://habr.com/ru/post/1715498/


All Articles