I have spent days trying to debug one of the applications I deployed to WebLogic Server. Here is some basic steps of settings we need to do: Compile all the codes IN DEBUG MODE. JAR-WAR-EAR the project. Before deploying to Weblogic Server, check managed server settings for enabling DEBUG MODE + DEBUG PORT (YOU WILL NEED THIS … Continue reading Java remote debug with Eclipse
Category: Java
Everything about Java
Handling Date, DateTime and Timezone
Recently I came across this problem in one of my project. Since this is a commonly used lib so I will just keep it here for future reference. Based on Java™ Platform Standard Ed. 7 Now to compatible with java.sql.Date, we use constructor Date(long date) which takes a milliseconds time value. (milliseconds since January 1, 1970, 00:00:00 GMT not to exceed the … Continue reading Handling Date, DateTime and Timezone