September 6th, 2011
admin
Original post can be found at It-Eye
Java 7 was released, so I gave it a spin to see what kind of improvements were made. While testing some new features I went online to look for not so obvious changes as well. Here is a short list of the new features and improvements in Java 7. Read more…
Original post can be found at It-Eye
Last day I got a tip about this old article “Java Is A Dead-End For Enterprise App Development”. My first thought was: “Here we go again, someone who is claiming a programming language is dying. The never ending returning discussion.” But I read it never the less Read more…
Original post can be found at It-Eye
Integration frameworks are getting more popular because you can easily integrate services or you can use them to integrate partial application parts to one application. To show you how easy it has become to integrate we did a 10 Minutes Hands-On at the It-Eye open space and this was the working result of that.
Read more…
You already know how to use embedded glassfish from junit now it’s time to show you how to use the maven plugin to achieve the same. Read more…
In my previous post I explaind that with the new EJB you can use an embedded EJB container to test your EJB. But there is also another way and that is to use embedded glassfish that is started from inside an junit. The nice thing here is that it you can start an embedded glassfish with the container you need, with EJB or with WEB or both if you need. Read more…
This is how you can test your EJB3.1 or the one I made here using an new embedded container provided in the new EJB. You can download the full package to test this here Read more…
This post describes how to create an simple Entity and Session bean with EJB3.1. As some of you know EJB 3.1 is ready to use and makes the world much easier for the developers. Read more…
Some of you may have heard about Jamvm, for all others, Jamvm is an very small opensource JVM. You may ask your self why do I need it, now there are couple of reasons you would like to use Jamvm. For example you want to run java on an mobile device or a router with very limited space on it, or you want to distribute your Java application but don’t want to depend on installed Java. At the end possibilities are endless. In this post I am going to show you how to compile and use JVM. Read more…
This is going to be a weird blog post so I am warning you. The reason why I am saying this is because I will try to go in to details about my weird performance problem but I am not able to say everything because ….. The short line of the story is like this, I got an Java application who is using an 3th party jar and this jar has weird performance issues when running 32bit and 64 bit JVM.
Read more…
What does everyone do when using open source project? UHM… find the binary and download it. Oke, that’s not bad but it sometimes pays off to go and use the sources of that project. By sources I mean look at the CVS/SVN repository of the project. Why you may ask?
The reason it pays is because sometimes in the repository you find the latest fixes that are not released yet. The same is with the this issue with xerces I stumbled upon. Read more…