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
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 7 years ago.
Improve this question
I am creating a web application in Java, I want to check how efficiently can my code execute?
Are there any benchmark tools for testing Java Code?
If you like to test the whole http call response time you can use tools like Jmeter.
It is an open source tool:
Apache JMeter may be used to test performance both on static and dynamic resources
and again
You can use it to make a graphical analysis of performance or to test your server/script/object behavior under heavy concurrent load.
In the past I used it when I worked in a team responsible for performances of a big italian web site.
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).
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
Hello to all please I need help, I am very versed with java but I have this project I am working on that needs java web programming skills. I have to establish a platform for web development in java. That already done I have to test if the platform is suitable for bot static and dynamic web applications in java.This is my point of difficulty now for the test
There are plenty of tutorials. I have found these ones by Oracle to be the best. They assume you know very little java and work there way up to the complex stuff.
With out knowing what your project it is very hard to give you specific information.
http://docs.oracle.com/javase/tutorial/tutorialLearningPaths.html
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 7 years ago.
Improve this question
I'm working on a Java project in which I should migrate a module based on ETBAC to EBICS. I've been searching for few days but I can't find any any example for such project.
The only available information is the official EBICS documentation.
Here, you can find a free EBICS client (french version) written in Java:
http://sourceforge.net/projects/ebics/
I came across your question a few times when researching for available ebics clients.
We have developed an Open Source ruby implementation of EBICS: https://github.com/railslove/epics
It is a pure ruby implementation and runs also on jruby to be deployed in a java environment
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 have a tomcat/mysql website that I would like to move over to Google app engine does anyone know of a good tutorial outlining this? Or can anyone make some suggestions on how to do this?
As long as you use standard servlet and JSPs you will be fine.
The limitations for Google App Engine are documented here : http://code.google.com/appengine/docs/java/jrewhitelist.html
Sessions are kind of expensive (read slow) so avoid state on the server as much as possible.
The backing store is also quite different than standard SQL if you use any db calls in your app.