Thursday, March 11, 2010

Posts Tagged ‘java’

Which java stack do you use ?

Friday, January 9, 2009 14:59

hi every body, I am just just running a poll about which java stackĀ  are you using ? and any comments are welcome ! [poll id="2"] have a nice weekend

This was posted under category: HowTo & Tutorial  |  Read Full Story  |  5 Comments
Tagged with: , , , , , ,

Is Grails too much Groovy ?

Thursday, January 8, 2009 11:32

Image via Wikipedia I think so... You think in java but write in groovy that is quite freaky/weird.

This was posted under category: HowTo & Tutorial  |  Read Full Story  |  10 Comments
Tagged with: , , ,

alternative year 2009

Monday, January 5, 2009 15:15

this is the first 5 days of the new year, Although 2008 has brought lots of changes to me, 2009 seems more promising.

This was posted under category: Notes  |  Read Full Story  |  0 Comments

too much annotation is also bad

Tuesday, December 23, 2008 9:00

Image via Wikipedia Annotations have changed every thing and lots of version updates/upgrades are made just to support them. Yes they have developers to get rid of lots of xml schemas and files at the same time,"Annotations have been more successful than XML" But are those XML files really bad ?

This was posted under category: Notes  |  Read Full Story  |  0 Comments
Tagged with: , ,

Spring is totally losing its invisibility

Tuesday, December 23, 2008 8:00

Many of you might remember at the spring 1.2.X series there is a strong voice like: easy,quick configurations and implementations with spring Yes in fact that was totally true. It really used POJOs as bean containers. And it works really fine. While using these spring versions you did not usually need to make any import statements for any spring package/class/interface sample classes below were shown as best practices:

This was posted under category: Notes  |  Read Full Story  |  14 Comments
Tagged with: , , ,

Grails, First Impressions

Wednesday, December 17, 2008 8:00

Image via Wikipedia Since SpringSource acquires the Grails I was willing to test this framework and make a dummy project but first I should read some books:)

This was posted under category: Notes  |  Read Full Story  |  8 Comments

java.util.Calendar.getInstance() // danger

Monday, December 8, 2008 5:52

Image via Wikipedia Do not use the method for in your frequently used methods. instead of creating new instances use Calendar.setTime(DATE) otherwise each instance use lots of memory: ...

This was posted under category: HowTo & Tutorial  |  Read Full Story  |  4 Comments
Tagged with: ,

ADD_MONTH vs add(Calendar.MONTH)

Monday, December 8, 2008 5:14

I found it very interesting that these two methods are not working same :( SELECT add_months(TO_DATE('28-FEB-2007'), 1) FROM dual = 31-MAR-2007 while java.util.Calendar c=..//28-FEB-2007 c.add(Calendar.MONTH,1); // gives 28-MAR-2007 which one ...

This was posted under category: HowTo & Tutorial  |  Read Full Story  |  0 Comments
Tagged with: ,

Runtime Java Stack

Friday, November 28, 2008 3:26

Image by Neil T via Flickr I have been developing java application for more then 6 years. Most of these years I have used and evaluated open source projects. Here I'll try to explain my open source java stack.

This was posted under category: HowTo & Tutorial  |  Read Full Story  |  0 Comments

maven profiles

Thursday, November 13, 2008 7:00

Image via Wikipedia Maven profiles enable your pom to build your project with different build options . Here I tried to overwrite some default configuration files with profile specific configuration

This was posted under category: HowTo & Tutorial  |  Read Full Story  |  1 Comment
Tagged with: ,