Java
-
EJB Programmatic Lookup
In our previous post we learnt about EJB references and EJB injection. Even though EJB injection is a powerful container…
Read More » -
The Perfect Singleton
From time to time I met Java programmers that are not really sure how they should implement Singleton pattern properly.…
Read More » -
Basic EJB References, Injection and Lookup
In the first part of this series we’ve introduced the mechanisms provided by the Enterprise JavaBeans v. 3.0 Specification to…
Read More » -
An Introduction to EJB 3.0 Injection and Lookup
Introduction The Enterprise JavaBeans Specification v. 3.0 introduces a simplified, annotation based API for EJB injection and lookup. EJB 3.0…
Read More » -
Hibernate Gotchas to Watch out
I’ve been using Hibernate for some time now and when I don’t work on a hibernate project for a while…
Read More » -
C++ or Java, which is faster for high frequency trading?
Overview There are conflicting views as to what is the best solution for high frequency trading. Part of the problem…
Read More » -
Java and Memory Leaks
Overview The term “memory leak” is used in Java in a manner which is different to how it is used…
Read More » -
How to get C like performance in Java
Overview Java has many areas which can be slow. However for every problem there is a solution. Many solutions/hacks require…
Read More » -
JVM options: -client vs -server
Have you ever wonder what is this -client or -server switch when you run your java app? e.g.: javaw.exe -client…
Read More »