I need to create a data transfer object, which I will use for storing the records retrieved from database. In this data transfer object, I need to declare a numeric field. For that which one is better – int or Integer
If I am defining the field as Integer, will there be any performance impact because of ‘Integer’ type if I am going to retrieve more than 2000 records from DB!?
Thanks in advance.
Integeris a better option, as it can handlenull; forint,nullwould become0, silently, ifresultSet.getInt(..)is used. Otherwise, it might throw some exception, something like, ‘Unable to setnullto a primitive property’.Performance is of little concern here.
int, you will end-up adding extra handling code; and that wouldn’t benefit you much. Your code will not be clean and straight-forward, lot of boiler-plate code, and you wouldn’t even gain performance.0, wherenullwas intended. Imagine the case where user submitted a form, and doesn’t supply any value forint. You will end up getting0by default. It makes sense, or does that really, when that field isnot nullin the database.