Do not limit your challenges.. Challenge your limits

BTemplates.com

Search This Blog

Powered by Blogger.

About Me

My photo
kathmandu, Bagmati, Nepal
I am Software developer based on Nepal.I have started coding since mid of 1995 with QBasic.My interest in software development covers a broad range of technologies from assembly to the Microsoft .NET platform to Java, Linux to Windows, Windows Mobile to Android, desktop to web to mobile, and many others. But from 2007 I am just working on Java mainly working on Java EE platform and decided just to go with it. I really like to learn new stuff and share things with others which is my main objective in creating this blog.

ArchUnit : Java architecture test library

Finally I have found the required library which will enforce architecture patterns . ArchUnit  . Currently I am exploring it and will upd...

Do not limit your challenges.. Challenge your limits

Friday, July 26, 2013

Wednesday, July 10, 2013

Singleton pattern in java


Although Singletons are not encouraged because it can make it difficult to test it's clients, we can create it in three ways. With Public final filed With Static Factory With Enu...

Saturday, July 6, 2013

maven spring JPA configuration on google app engine


From few days I was trying to configure my first app on google app engine(gae) with maven but due to some incompatible version of  datanucleus  and gae , I was not able to run the application.After spending few couple of days I have finally configured spring ( DI,mvc and Security ) and JPA with maven.I am sharing my configuration so that it will be beneficial for someone...

Monday, July 1, 2013

Object Oriented Software Development with Java


Object Oriented technologies are a popular paradigm for developing applications. This approach models an application around a series of real world objects, such as an employee or a ship. In order to solve a problem, it is useful to think of the real world objects that make up the problem domain. The OO approach is based on three distinct activities: Object Oriented Analysis (OOA): This is concerned...