Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'd like to run a SPARQL query using the MarkLogic Java API documented at http://docs.marklogic.com/guide/java . I've seen examples for running such queries from the console, via the REST API, or via XQuery. But I don't see how to do this using the Java API - is this possible to do?
Choose a toolkit (e.g. http://jena.apache.org/).
Being a W3C standard, any client library should be able to work with any server. The level of compliance to the standards is rally quite high.
Documentation:
http://jena.apache.org/documentation/query/app_api.html
(Disclosure: I contribute to Apache Jena).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there a tool for managing changes of OrientDB schemas?
I am familiar with Flyway, but it has no support for OrientDB, so it will be great if there is something similar you could recommend.
My requirements are below:
Written in Java
Can use native OrientDB API to execute queries (not only JDBC)
Can use Java based migrations (not only queries)
See this related feature request already added to the Flyway 5.2.0 milestone, but no ETA announced.
We're currently investigating contributing to this, as we'll need that exact feature.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
my question is that......
I want to host my content management system without java dedicated server,Because of high Cost of java server.And what framework is beneficial for me to make content management system in java......
Help please,Thank you from my side.
You can always try amazon web services for hosting:
AWS
Grails is built on groovy and provides you with features like scaffolding. Groovy is an extension of java and relatively easy and fun to use. See these official sites for groovy and grails and this SO post for more info:
Stackoverflow
Groovy
Grails
Ultimately not a definite answer, but rather just some suggestions
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there an API for OpenGrok?
I'm interested in mining the results in either Perl or Java.
At the moment, I could perform HTML scrapping against the results, but seems less-than-ideal.
As per its website, it leverages Lucene, but no real info on how to connect to it other than via HTML.
Starting in OpenGrok 0.13, there is a simple REST API.
With OpenGrok 1.0 there is a JSON API.
Opengrok supports a command line interface that may be able to provide what you're looking for.
Example:
$ java -cp ./opengrok.jar org.opensolaris.opengrok.search.Search -R /var/opengrok/etc/configuration.xml -f "My Search"
This fork has a JSON API: https://github.com/Goyaka/OpenGrok/blob/f70d78e743a0a389b46ea36c4785182ee8f03e13/src/com/goyaka/opengrok/web/SearchServlet.java
This issue discusses it: https://github.com/OpenGrok/OpenGrok/issues/422
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there a Java RTP/RTCP library based on Java NIO or some Java NIO framework (Netty, MINA, ...)?
In Red5, we are adapting an RTP/RTSP library written using Mina. If you would like to check it out, go here: http://red5.googlecode.com/svn/java/plugins/trunk/rtspplugin/
The original library was written by Matteo Merli (matteo.merli#gmail.com) and yes, we have his permission to modify it.
You would have to write a wrapper yourself, I'm afraid. Netty has a pretty flexible architecture that would allow that.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I just read this post and i wonder if there is something like this for querying jboss log file.
I'm developing OtrosLogViewer, it's on apache license. It's a quite good log viewer with similar features to Chainsaw.
JBoss logs using Log4j, and Chainsaw is a parser/GUI for Log4j
Try Chainsaw V2 - the supported expression syntax used to filter, search and colorize rows isn't SQL based, but provides a good amount of functionality (regexp queries, exists (not null), relational operators, etc).
You can view information on the expression syntax from the help/tutorial menu.
Chainsaw V2's home page:
http://logging.apache.org/chainsaw/
You can run Chainsaw V2 via web start from the 'download' link on that page.