Okay, let's just say that my previous post was one of the dumbest things I've ever done, and move on? Case in point - switches on internet backbones report...
The way I understand how NTP works, there is a hierarchy of time servers where most of the world talks to tier 2 servers and those tier 2 servers talk to tier...
... agreed. it's better to write time in UTC format when possible, then convert them into default tz to display. ... once i had a funny production issue. i...
I would think that only an operating system update would be needed and that a JVM update would not because I would assume that the JAVA environment gets its...
Bart - Yes, all the NTP servers would have the correct time, but do they send to the client UTC time or local time (based on time zone information they get...
Just to be clear in my tiny mind...does a running JVM "click" during a time change, or would it need to be restarted? Likewise, if the rules change, even if...
Never mind...I just started reading the JavaWorld article listed in David Schlosnagle's excellent message, and found the following: "Machine clocks are always...
Sun also have a tool to update your JVM in case you are not ready to upgrade: http://java.sun.com/javase/tzupdater_README.html We tried it and it worked for us...
Hi there, Based on the Spring framwork and Hiberate I am trying to retrieve data with joining multiple tables using Hibernate mapping. Do anyone know good...
A stored procedure would ofcourse be better than doing a join using hibernate. There are so many ways of doing a join in hibernate. Using mapping: Take two...
Thank you for your input Athar, In terms of what the stored proc is better than joining hibernate? Does it have less overhead or better performance or better...
Stored procedures will definitely have better performance. Stored procedures will not be very portable (if you switch data stores). Stored procedures will...
Dear friends, Where can I find ajax components ? The one I am more interested in is the file system (explorer like) representation etc. Are there any ajax...
Sent to me by a friend with the subject line: "Almost-great explanation for not fixing a bug!" http://support.microsoft.com/default.aspx/kb/214326/en-us -...
You might be interested in a little back story on this issue from Joel Spolsky: <http://www.joelonsoftware.com/items/2006/06/16.html>. Years later, web...
<pre> [code] /** * Trim all trailing zeros found after the decimal point of {@link java.math.BigDecimal} * @param n {@link java.math.BigDecimal} * @return n...
man I swear I looked it up on google but everytime I do a search this is what I got so you tell me what was I doing wrong with my search ... thanks!!!! ...
You searched for "ajax components view file system", I searched for "ajax file explorer component" -- these aren't very different, but the big difference is...
... In general terms, a "trailing zero" is a zero at the right end of a printed floating point number, past the decimal point. (Or spoken. Point is,...
Hi All, We are developing a web application and one of the requirements is to enable Logging of debug statement only when so requested. That means, we would...
Nikunj - There are probably many ways to achieve this. Here are two options: 1) use configureAndWatch when loading your properties file. This will tell log4j...