Murach’s Java Servlets and JSP is the ONLY book you need to learn Web App Development in Java using JSP and Servlets. The book covers all the concepts required you to build […]
Mohamed Sanaulla
Book Review: RESTful Web Services with Dropwizard by Alexandros Dallas
RESTful Web Services with Dropwizard` by Alexandros Dallas is a good guide to get started with dropwizard. The author covers most of the features of dropwizard which includes creating RESTful End points, […]
Book Review: RabbitMQ Essentials by David Dossot
I have been working on integrating with RabbitMQ to implement the messaging architecture. All the time I made use of the basic tutorials available on RabbitMQ site to wade through understanding different […]
Parameterized Test Runner in JUnit
We all have written unit tests where in a single test tests for different possible input-output combinations. Lets look how its done by taking a simple fibonacci series example. The below code […]
Simple Aspect Oriented Programming (AOP) using CDI in JavaEE
We write service APIs which cater to certain business logic. There are few cross-cutting concerns that cover all service APIs like Security, Logging, Auditing, Measuring Latencies and so on. This is a […]
Book Review: Java Performance by Charlie Hunt and Binu John
If you want to: – learn about commands used for OS monitoring – understand about different components of JVM – monitor and tune JVM to improve its performance. then, Java Performance is […]
Getting started with Mocking in Java using Mockito
We all write unit tests but the challenge we face at times is that the unit under test might be dependent on other components. And configuring other components for unit testing is […]
Another sample for using JAXB
Recently I blogged a sample for using JAXB and thought of sharing it on my blog. The sample for JAXB can be found here.
Book Review: Peopleware
Peopleware is a must read for Managers who want to explore and learn about different managerial responsibilities and learn about what not to be done while executing those responsibilities. The content is […]
JSON Processing support in JavaEE 7 and JSR-353
JSON processing is not supported out of the box in Java. One would have to make use of 3rd part libraries to enable JSON processing. But with JSR 353 and its reference […]