Tuesday, April 28, 2015

web service client JAXWS by maven

Generate web service client stub class by using the JAXWS maven plugin. "jaxws-maven-plugin" will generate the web service stub classes by using that we can implement client or test the web service. generated stub classes will stored under src folder and by using this service classes we can communicate...

Tuesday, April 14, 2015

Wednesday, April 8, 2015

get byte or memory size of array,list,collections in java

In java lot of time we will come across the scenerio where in which we need to find the how much memory used by given list. The ArrayList holds a pointer to a single Object array, which grows as the number of elements exceed the size of the array. The ArrayList's underlying Object array grows by about...