java
Aspect Oriented Programming and MVC with Spring Framework
Aspect Oriented Programming and MVC with Spring Framework View more presentations from Massimiliano Dessì.
Installing Sun JDK/JRE on ubuntu (10.04 LTS)
It was actually easy till the time i got a message from the new installation of ubuntu that sun-java6-jdk is not found in package list. From last two versions of linux specifically on ubuntu i used to do following for installing java. This command asks me the root password and then installs sun jdk and [...]
Bubble Sort and Binary Search – Java
Just like that i was again brushing my core Java few days back and wrote bubble sort and binary search code in Java. Here i am sharing the code, please post your comments in case this can be further optimized: Bubble Sort: And once we have sorted array with us we can apply binary search [...]
Using HTTPS GET/POST – Commons HttpClient with Self Signed Certificate
I think Commons HTTPClient is a quite useful open source library for accessing various HTTP APIs from Java back end. It is very easy to setup a quick test program using this library. I used this very recently when one of our clients requested quick HTTPS access on one of his servers and we had [...]
Making long/bulk web operations offline/asynchronous
As web is a stateless medium of interaction, every action is a request/response pair. As this request response pair should have a definite life cycle there are timeouts attached to It i.e. you can not wait for a request’s response forever. There comes a problem where you want to execute longish actions. These longish actions [...]
