Java Object Mapping with Orika
In a layered application, you sometimes have similar class models for the same domain entities. One model could be mapped to a database (annotated for persistence), …
In a layered application, you sometimes have similar class models for the same domain entities. One model could be mapped to a database (annotated for persistence), …
For the last few months we’ve been working hard on a new invention here at Viaboxx Systems, and now we think it’s time to tell the …
Flurfunk, a simple Twitter-like service for small teams, is now open source. We created Flurfunk because we wanted an internal timeline where we could: post interesting …
The Apache Camel framework offers powerful mechanisms to determine which method of your beans to invoke. These are described here in the Camel documentation: http://camel.apache.org/bean-binding.html. In practice, you have …
All software projects that produce GUI applications for users face the same problems: 1) How to maintain documentation, that is always up-to-date?Containing current screenshots showing realistic data, …
Some time ago in one of my previous projects, we had to generate customer salutations in emails and SMS texts in various ways, like these example …
Sometimes you are not working in the big enterprise project with thousand lines of code. You just want to play with a new library or a …
Imagine you get a static link library (.lib file) whose functions need to be invoked from a Java application. You cannot link the library to your …
Imagine, that your requirement is to use a DLL, that contains .NET components under Windows. Your first thought could be JNI, but calling .NET components requires …
Java interoperation with a .NET DLL using jni4net Mehr lesen
In many software projects that need to support multiple languages, the software developers and the translators are different persons and have to find a way how …