3
votes
What descriptive variable name can I use here?
'multiplicity' would seem the right name.
Looks like you're describing the following values:
Mandatory: 1
Optional: 0+
Select All: n
…
2
votes
Encapsulating Java Preferences API
You're mixing a few concepts here. The default given in the code should be specific to the local situation as a 'reasonable default'. If you want to have application-wide defaults, then you need …
3
votes
Large Inner classes and private variables
Don't forget to consider why you're trying to break up your large class. Is it for software engineering purposes? E.g. it's a programming hotspot and you have such a large file it causes complica …
0
votes
Java sockets - asynchronous wait, synchronous read
In sockets programming the data may come in as arbitrary chunks depending upon the interaction between the sending system, intermediate links and how your OS treats PSH flags. You'll need to put a …
1
vote
Final initialization in java can be postponed, how does this prevent against returning null inadvertently?
Finals can only be set and never re-set. They are sometimes conflated with the concept of constants in java. More correctly they are immutable object references.
The catch is that if some …
2
votes
Sleep OS X from Java
See: Making Mac OS X sleep from the command line
Create a script with the following:
#!/bin …
2
votes
Maven release properties
mvn -B release:prepare release:perform
-B is for batch mode, it will use the defaults it offers when in non-batch mode. Generally for X.Y.Z-SNAPSHOT, it does a release of …
4
votes
Hibernate and optimistic locking
Optimistic Locking is achieved using the version capability of hibernate. Read through the doc below to see how it is used.
…
0
votes
Java: How to launch system’s registered application for a URL
Windows it's "start [URI]", OSX it's "open [URI]", Linux has no equivalent as it all depends upon their window manager.
As for whether itms:// opens iTunes, that all depends on their config …
0
votes
Why does Maven javadoc fail with error “cannot read options”?
I believe the problem is that the javadoc command is being run without any parameters. I ran into this in one of my multi-module projects where it was trying to javadoc a non-java module. (The jav …
1
vote
java.lang.InternalError: Location with invalid code index… What?
Does the JRE used by your emulator match the JDK version you built the code with? Since this is an internal error, either a mismatch has occurred, data corruption (e.g., the JPDA injection), or an …
7
votes
How do you determine if a file is html from the URL?
You can not. There is nothing wrong with serving up html files with urls that end in .jpeg, or .gif or even .mp3. The only way to know is to fetch the url and view the Content-Type header to see …
1
vote
General purpose build tool with good Java support?
I recommend Hudson as a general build management solution. You configure jobs and we point it at our revision control system to watch for checkins. It has strong java support, but can run any job …
1
vote
Java output a file to the screen
You need to create a 'download' servlet which writes the file to the response output stream with correct mime types. You can not reliably do this from within a .jsp file.
We usually do it …
1
vote
Chain Locking via Lock
Any situation where you have a series of critical sections which are mutually independent, but you wish to execute in order would be appropriate.
Think of this like a burrito bar, you have …
