Tagged Questions
The pita tag has no wiki summary.
17
votes
5answers
10k views
Has anyone ever got a remote JMX JConsole to work?
It seems that I've never got this to work in the past. Currently, I KNOW it doesn't work.
But we start up our Java process:
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=6002
...
5
votes
3answers
504 views
How can I flag source code in an MS Word document to not spell check?
Sometimes, for what ever reason, I copy source code into either a word document, or an email ... which in Outlook, I believe, is using Word.
Anyway, it would be nice if I could spell check the ...
3
votes
7answers
343 views
Searching in Java collection. Why it's so hard?
Is there a reasonable explanation, why searching an element in Java collection is so hard?
For example, let's say I have:
ArrayList<People> listPeople = new ArrayList<People>();
public ...