Realtime J2EE Project Code Standard

What are the code standard used in J2EE project in real time?

Questions by Vinod G S

Showing Answers 1 - 3 of 3 Answers

venkatjdv

  • Jan 7th, 2011
 

1. If you open the java object, you must close that object otherwise it is still in heap memory and it causes some exception and it may effect the
performance of the project.
2. Naming Conventions. (Means you should fallow the class names and methods with following targets).
3. Try to evade unwanted type casting.
4.
You should be use PreparedStatement instead of Statement when you try to insert a record into the database because Statement may effect the performance the
program.
5. We need to use try catch blocks in our program to handle the
expectations.
6. We need to concentrate to reduce the object creation.
7.
We need to use design patterns in our program.
And some more ...

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions