Developing Apache CXF and JPA services in NetBeans 6.1 IDE

Apache CXF is an open services framework. It is more than just a Web Services stack. Its simple, powerful, and promising. Today, the CXF project graduated from incubation as a top-level Apache project. It has made several stable releases since its incubation. I know projects which still prefer to use first generation Axis due to … Continue reading Developing Apache CXF and JPA services in NetBeans 6.1 IDE

Android SDK is out. Its Java, not J2ME:)

Today, Google released the Android platform SDK to the developer community. It comes with tools and APIs to develop applications on the open mobile platform using the Java programming language. It comes with an emulator and Eclipse plugin for development. The SDK is already available on Windows, Mac OS X (intel), and Linux (i386) platforms. … Continue reading Android SDK is out. Its Java, not J2ME:)

Synthetic methods in Java

Synthetic methods are often referred to as bridge methods in Java generics world. These methods are created by the Java compiler as a result of type erasure when the signature of the inherited methods change when a type extends or implements parameterized classes or interfaces. The compiler generates synthetic methods in subtypes of parameterized supertypes … Continue reading Synthetic methods in Java

javac recognized options are hidden – javac exposed

I was reading a recent blog entry from A. Sundararajan which uncovers one of the hidden options used to be available only for debugging Java compiler. This option is an undocumented feature which explains the underpinnings behind some of the various language features introduced in JDK1.5. OpenJDK provides an opportunity to learn the intricacies of … Continue reading javac recognized options are hidden – javac exposed