pallab_rath
Name: pallab_rath
Score: 355
Last Seen: 33 days, 9 hours, 51 minutes ago
Member Since: 17 September, 2011
JavaPins
atom rss
2
Pins

My Experiments With Java: Hashcode and Equals Method

published 5 days, 21 hours, 17 minutes ago posted by pallab_rathpallab_rath 33 days, 9 hours, 52 minutes ago
Tuesday, May 14, 2013 6:40:47 PM GMT Wednesday, April 17, 2013 6:05:43 AM GMT
It’s a common topic In  java interviews. And these two methods are always common to any class you write in Java. So let’s know them in and out. boolean equals(Object  obj) and int hashCode() are two methods implemented in Object class with several other methods.  In Java every class implicitly inherit Object class so every class has these methods.  Equals method check the reference is holding same object or not.MyClass obj1 = new MyClass();MyClass obj2 = 0bj1;Then obj1.equals(obj2) returns true.MyClass o... (more)
category: JAVA | clicked: 12 | comment | | source: www.myexperimentswithjava.com
2
Pins

My Experiments With Java: What is the Big Deal about Big Data

published 133 days, 9 hours, 7 minutes ago posted by pallab_rathpallab_rath 172 days, 11 hours, 35 minutes ago
Monday, January 07, 2013 6:50:41 AM GMT Thursday, November 29, 2012 4:22:33 AM GMT
Like every sector in our computer world we always have some new trends.  In fact the dynamics of changing trend in Computer industry is very evident. Few years back all want to adopt tablet and different form of post pc devices. And recent time Cloud was the big word. All most all companies have launched lots of cloud specific services or platform. Every blogger including me has written about cloud. And now the recent buzz is Big Data, Hadoop, Data Analytics etc..  There is a say Pen is mightier than Sw... (more)
category: JAVA | clicked: 16 | comment | | source: www.myexperimentswithjava.com
1
Pins

My Experiments With Java: Do I need to google ?

posted by pallab_rathpallab_rath 299 days, 8 hours, 10 minutes ago
Wednesday, July 25, 2012 7:47:39 AM GMT
To find anything in internet the best way is googling. Any one who use internet the first thing they learn is googling. When I say googling it include all web search like Bing,Yahoo etc. I do googling to read news, to watch video, to check weather, movie sports etc.Since information is scattered in different website, and they are too many to remember. So people use search engine to locate their content. Few years back everything was working in this pattern, we used to search stuffs on web and browse our ... (more)
category: JAVA | clicked: 1 | comment | | source: www.myexperimentswithjava.com
1
Pins

My Experiments With Java: Read me if you can

published 325 days, 7 hours, 40 minutes ago posted by pallab_rathpallab_rath 328 days, 8 hours, 49 minutes ago
Friday, June 29, 2012 8:17:48 AM GMT Tuesday, June 26, 2012 7:09:12 AM GMT
In my starting days of coding I had a notion if you don't understand the code means its a tough program, some hi-fi advanced code. And if the code compile with out error and execute properly means its perfect in all aspect. My first programming language was C. There was a lab exam where we need to code 5 given program. I had completed well ahead of time, all the five were compiling and running properly. The teacher was checking each student's program and evaluating. You have to get minimum three progra... (more)
category: JAVA | clicked: 13 | comment | | source: www.myexperimentswithjava.com
1
Pins

Life and Java both throws Exception

published 424 days, 10 hours, 15 minutes ago posted by pallab_rathpallab_rath 426 days, 5 hours, 56 minutes ago
Thursday, March 22, 2012 5:42:58 AM GMT Tuesday, March 20, 2012 10:02:06 AM GMT
With each passing days we realize " man proposes and god disposes" , well we plan some thing if there is an deviation we called it exception. Exceptions are annoying and we just hate it. More or less each exception holds lots of vital information of reality,  to go forward we need to decode these exception. I have not much idea how to decode the exceptions that life throw, but in Java we can certainly plan it very well. Java got a one of the advanced way to handle exception. To know more about exceptio... (more)
category: JAVA | clicked: 10 | comment | | source: www.myexperimentswithjava.com
2
Pins

My Experiments With Java: All about imports in Java

published 434 days, 6 hours, 12 minutes ago posted by pallab_rathpallab_rath 445 days, 9 hours, 10 minutes ago
Monday, March 12, 2012 9:45:16 AM GMT Thursday, March 01, 2012 6:47:48 AM GMT
In any Java source file first line after package declarations are import statements.  These statements enable us to use different classes from outside package. Compiler always looks at the import statements to find class definition. Instead of import statements we can write fully qualified name. For ex: java.io. File file = new java.io.File(filepath); This is a perfectly valid statement. Only problem is it looks littlie complicated to read.  Good codes are not only run well but also easy to read. So... (more)
category: JAVA | clicked: 12 | comment | | source: www.myexperimentswithjava.com
2
Pins

My Experiments With Java: Annotation in Java, the last moment of information

published 514 days, 22 hours, 11 minutes ago posted by pallab_rathpallab_rath 518 days, 4 hours, 33 minutes ago
Thursday, December 22, 2011 5:46:30 PM GMT Monday, December 19, 2011 11:24:58 AM GMT
In any football match you will find the coach jumping, screaming telling something to the players. Its not only in football even in Cricket and other sports the coach will try to give some more information to the players on field.Though there was a detail game plan which involve coach, captain and all players much before the match. They know what to do everything is planned, still the coach has to say "one more thing" while the game is in progress. Same case with us developer, we used to think and  des... (more)
category: JAVA | clicked: 6 | comment | | source: www.myexperimentswithjava.com
4
Pins

My Experiments With Java: "Interface" The Middle Man

published 544 days, 6 hours, 28 minutes ago posted by pallab_rathpallab_rath 551 days, 11 hours, 29 minutes ago
Wednesday, November 23, 2011 9:29:37 AM GMT Wednesday, November 16, 2011 4:28:38 AM GMT
We will always find middle man in between producer and consumer of anything. Sometimes more than one layer of middle man. Both producer and end user hate those middle man. They just rip profit by somehow involving in transaction. But no one will deny it require lots of thinking to establish a model which doesn't need middle man. Let’s understand what kind of value these middle men bring. Like real world every software or services is integration of various modules. Each module is responsible to carry out... (more)
category: JAVA | clicked: 6 | comment | | source: java-pallab.blogspot.com
2
Pins

My Experiments With Java: ExtJs with Spring

published 592 days, 40 minutes ago posted by pallab_rathpallab_rath 596 days, 4 hours, 31 minutes ago
Thursday, October 06, 2011 3:17:57 PM GMT Sunday, October 02, 2011 11:26:54 AM GMT
ExtJs is an popular java script framework. To develop rich and interactive user interface, extjs is used. It is a basically library of java script component which are ready to use in webpage. ExtJs components work very well with JSON data. If in server side we decide to Spring as framework. Its very easy to integrate ExtJs with Spring. In Spring MVC we can easily configure FTL (free marker technology) for specific to ExtJs Component. FTL is something which is responsible to convert java objects to desire... (more)
category: Spring | clicked: 16 | comment | | source: java-pallab.blogspot.com
tags: extjs, Spring
2
Pins

My Experiments With Java: Timeline is in right time for Facebook.

published 601 days, 21 hours, 17 minutes ago posted by pallab_rathpallab_rath 604 days, 8 hours, 53 minutes ago
Monday, September 26, 2011 6:40:22 PM GMT Saturday, September 24, 2011 7:04:34 AM GMT
Last week google opened its new social networking site (G+) for all user. In my last blog (http://java-pallab.blogspot.com/2011/08/my-wall-is-my-hoarding.html) we visited its key functionality and how it bring some of our social behavior on web.Now the ball was in FB's court, it has to bring in similar feature. Yesterday in F8 conference, FB has just changed the game. Mark Zuckerberg was playing the role of Steve Jobs on the stage  The new sensational features of FB is time line and open graph. Through t... (more)
category: Foundation | clicked: 1 | comment | | source: java-pallab.blogspot.com
2
Pins

My Experiments With Java: Ajax Restaurant

published 601 days, 21 hours, 17 minutes ago posted by pallab_rathpallab_rath 606 days, 23 hours, 20 minutes ago
Monday, September 26, 2011 6:40:22 PM GMT Wednesday, September 21, 2011 4:37:42 PM GMT
When and Why We should use Ajax When first time I learned the term Ajax. I was trying to understand what kind value it will add. Before that I will tell one of my funny experience I was driving with my friend near to Bangalore. It was 1:30 PM. We were searching some small hotel for lunch. We found a one near to the highway. We went there it was a normal road side Indian hotel. There were few people were eating. We ordered a veg thalli for each. The waiter served us a proper south Indian thalli. It h... (more)
category: Ajax | clicked: 0 | comment | | source: java-pallab.blogspot.com
4
Pins

My Experiments With Java

published 607 days, 29 minutes ago posted by pallab_rathpallab_rath 610 days, 21 hours, 28 minutes ago
Wednesday, September 21, 2011 3:28:21 PM GMT Saturday, September 17, 2011 6:29:26 PM GMT
In a typical web application or any GUI based application, MVC pattern is widely followed. MVC says there is a clear separation between presentation layer, processing layer and the persistent layer. I always imagine any private or MNC bank where there are front office people, Nice, beautiful soft spoken who are the user interface. And in back office some ugly, tuff and smart mangers who run the business.   Similarly we design our java application and I assume this holds good for mostly in Object oriente... (more)
category: Java EE | clicked: 8 | 1 comment | | source: java-pallab.blogspot.com