Search Results

3
votes
4answers
1k views

Are Java 6’s performance improvements in the JDK, JVM, or both?

I've been wondering about the performance improvements touted in Java SE 6 - is it in the compiler or the runtime? Put another way, would a Java 5 application compiled by JDK 6 see an improvement r …
5
votes
6answers
944 views

How do I get rid of the mouse cursor in full-screen exclusive mode?

I'm working on a simple 2D game engine in Java, and having no trouble with FSEM, buffer strategies, and so on; my issue is with the mouse cursor. In windowed mode, I can hide the mouse cursor, no p …
0
votes

How to upgrade database schema built with an ORM tool?

When working with Hibernate, I use an installer class that runs from the command-line and has options for creating database schema, inserting base data, and dynamically updating the database schema …
4
votes

What is the most useful multi-purpose open-source library for java?

Apache's Jakarta Commons. …
0
votes

How do I get rid of the mouse cursor in full-screen exclusive mode?

I think I've finally found the solution: System.setProperty("apple.awt.fullscreenhidecursor","true"); This is an Apple-proprietary system property that hides the m …