Search Results

4
votes
7answers
939 views

Is there any way to define a constant value to Java at compile time

When I used to write libraries in C/C++ I got into the habit of having a method to return the compile date/time. This was always a compiled into the library so would differentiate builds of the lib …
1
vote
6answers
121 views

Do final members assigned constants on declaration get optimized at run-time to ‘static final’s?

When I define constant values in my Java code, I generally declare them 'private static final', but recently I've been maintaining code where the constants are defined 'private final'. I'm …
3
votes
2answers
74 views

Is it possible to programmatically close a Java process through JMX

Hi I'm currently writing an app to monitor another Java process and take specific actions when certain targets are hit. For example, if a thread deadlocks for a certain time, kill the threa …
4
votes

Eclipse memory use

I don't know about Eclipse specifically, I use IntelliJ which also suffers from memory growth (whether you're actively using it or not!). Anyway, in IntelliJ, I couldn't eliminate the problem, but …
2
votes

Good guide to CORBA?

You can use the SUN CORBA tutorial on http://java.sun.com/developer/onlineTraining/corba/corba.html. It's …