As a Web application developer, I face lots of problems at the same time.
Real J2EE Project Experience and Tips
Java,J2EE,Oracle,Linux experience and workaround tips. If you have thought at least once like "How much should I learn technologies to be good enough developer?", Yes answer is here, just read this articles.All articles are made use at real project and making clients happy!
Monday, November 30, 2009
How to avoid being in trouble with "Analysis paralysis"
Friday, November 21, 2008
Tuesday, October 28, 2008
Note About Item43.Return empty arrays or collections, not nulls

It's sometimes argued that a null return value is preferable to an empty array because it avoids the expense of allocating the array.This argument fails on 2 counts.It's possible to return the same zero-length array from every invocation that returns no items because zero-length arrays are immutable and immutable objects may be shared freely.
Collections.emptySet();Collections.emptyList();Collections.emptyMap();
private static final String[] EMPTY_STRING_ARRAY = new String[0];Collections.toArray(EMPTY_STRING_ARRAY);
Friday, October 24, 2008
pros and cons of Singleton, Monostate

- Global access point(exactly one instance exists in one JVM)
- Cuts the starting up time and memory allocation(Singleton object is instantiated only when the instance is needed(if lazy instantiation is applied))
- can't be inherited(because the constractor of the singleton class should be private)
Sunday, September 14, 2008
Refactoring Java codes
Monday, September 08, 2008
Performance improvement of Distributed Application RMI
Saturday, September 06, 2008
SCJD exam study

It has been passing months more than I was expecting to finish the SCJD exam up.
Labels
- Apache (3)
- Certifications (1)
- DB (3)
- Debian (1)
- Design Patterns(GoF) (3)
- Freelance (8)
- HTTP Server (2)
- IT (39)
- J2EE (5)
- J2SE (10)
- Java (30)
- JAXP(XML) (1)
- jobs (41)
- Linux and Unix (3)
- Maintenance (2)
- mod_rewrite (1)
- Money Transfer from the US (1)
- Odesk Assignment (2)
- Oracle (3)
- ordinary topics (10)
- outsourcing (1)
- perfromance (2)
- SCJD (6)
- SDLC-Design and Development (13)
- SDLC-Implementation (8)
- SDLC-Initial Planning(Planning) (2)
- SDLC-Recycle(Support) (5)
- SDLC-Spec Analysis(Requirement Analysis) (1)
- Security (2)
- SEO (1)
- Struts (1)
- Test Driven Development (1)
- Tomcat (1)
- Ubuntu (1)
- Web Marketing (1)
