open source jdbc pooling1223 (10/3/2005 4:51:20 PM) comp.lang.java.programmer I am looking for some open source database pooling for my Struts/mySQL application. I have looked at the db-commons from Apache and proxool and they seem fine. I have also looked on the Sun site, but didn't r... humblecelt(34)
listner or observer1620 (10/4/2005 1:25:33 PM) comp.lang.java.programmer i have multithread. each thread takes different amount of time to complete their tasks. i want to collect all the results immediately as soon as individuals finishes. i dont want to use join method of thred. i... srcjnu(381)
NullPointerException #21833 (10/6/2005 8:42:04 AM) comp.lang.java.programmer Ive got a Swing application that sometimes gives this error below. Ive tried to catch this error from EventDispatchThread but gave up. Dont know an easy way to do it.Even if I did I might only get the same ex... networkone(61)
Objects in ArrayList and GC927 (10/6/2005 2:35:26 PM) comp.lang.java.programmer If there are redundant objects in an TreeMap that are no longer in use will the Garbage Collector remove them or do you need to do that manually? ... blah3625(16)
Java at multi application servers414 (10/14/2005 7:48:51 AM) comp.lang.java.programmer Hi, we develop a server application, that has the request for very flexible memory scalabilty: Normaly it uses only 200MiByte and sometimes up to 3GiByte memory. The server (RS6000 / AIX5.1L / JDK1.4.2 (32Bit)... t.bz(5)
Solve this beauty1926 (10/27/2005 1:23:59 PM) comp.lang.java.programmer Code: 1. String line = "123 456"; 2. String firstPart = null; 3. String[] splits = line.split("\\s",2); //breaks line into two parts at white space 4. firstPart.id = splits[0]; Problem: I would like to merge ... sharp.tool(46)
How stable is 1.5?520 (10/30/2005 4:00:37 PM) comp.lang.java.programmer I've got Java 1.5.0_05-b05 running on Windows XP and Windows 2000 and it's starting to through a lot of "An unexpected error has been detected by HotSpot Virtual Machine" errors after a bit. Is it worth switchi... blah9655(37)
servlet and thread232 (11/1/2005 1:15:01 PM) comp.lang.java.programmer i am connecting to a servlet. i am passing some values from JSP to servlet. the servlet gets those values from JSP by request.getParameter(). then the servlet creates Threads as much as values gives to it. ... srcjnu(381)