Java Shell Script
Often happen that I've to write some shell/automation scripts for job or fun and most of the time i do it with bash or similar, but because my main programming language has been java, i every time wondered if could be possible do some of this script in java, i know that a lot of other languages have the support for be ran as script, like in D you can put on the top of your file #!/usr/bin/env rdmd
and that file can be compiled or just run, in case you run it it will compile itself and exec the code......
Primitive Boxing Problem
Hi All, I'm back with a new challenge to explain about one my project.
Like the previous post explain I'm working on this project ( Object Query ) to find a new way to write DBMS query directly in java.
So my idea is not so hard to implements until you are thinking in Object way, like almost all java think,
but there are few things that in java are not object one of this are the primitives types, and this primitive types are common in an DDD domain
that's mean if I'm not able to handle this problem my idea is died!.....
DDD Query Way
In last few years I was lucky and I had the opportunity to work with some new and powerful java frameworks and with the newest software design approaches, and in particular I specialised in DDD (Domain Driven Design).
When you try to develop a software following DDD principles you need to use some frameworks that help you to thinking only to domain, example the ORM for the persistence or user interface generator for the user interaction.
Now I want focus on persistence because in my work experience I found some gap in the persistence frameworks......