Search Results

0
votes

Is JRuby ready for production?

JRuby is among the fastest Ruby implementations right now and definitely production ready. Here's some "success stories" from jruby.org: …
2
votes

“Missing artifact” errors with company repository

You'll have to add your company repository under the "repositories" element. The "mirrors" element is for specifyi …
3
votes

What does your Java development environment consist of?

If you've used ReSharper in Visual Studio, you should try the original: IntelliJ IDEA. You can use the …
0
votes

Are there any Java VMs which can save their state to a file and then reload that state?

Sun has done some research on "orthogonal persistence", which provides "persistence for the full computational model that is definedby the Java Language Specification": …
4
votes

Java: Out with the Old, In with the New …

Changing JUnit 3-style tests: class Test extends TestCase { public void testYadaYada() { ... } } to JUnit 4-style tests: class Test { @Test …
5
votes

Dynamic SQL Java library

Squiggle is a library for dynamically generating SELECT statements. …
1
vote
1
vote

What is the best java web application framework that goes well with xml+xslt?

Spring MVC has support for XSLT views (reference docs). …
2
votes

Is C++ like resource management possible in Java

Joshua Bloch has proposed adding a mechanism called Automatic Resource Management to Java as p …