• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Common Problems in Java

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am a fresher. i am looking for job in java field.
Could any one tell me the common problems we face while developing the java project.
specific to servlets, JSP, JDBC.
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Madhava Reddy Solipuram wrote:Could any one tell me the common problems we face while developing the java project.


Don't worry. Nobody is going to ask you about problems you haven't faced at an interview.
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Could any one tell me the common problems we face while developing the java project.



Are you looking to answer that question expecting that it will be asked in an interview ?
 
Ranch Hand
Posts: 213
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, not sure what is your expectation on the answer for this question ...

For JDBC,
- security: SQL Injection (solution: PreparedStatement)
- performance/resource: connection/resultset/statement not close properly (solution: properly close in multiple finally{} of exception handling for each closing)
- design: repeating code (solution: Template Design Pattern, or use Spring JDBC Template)

... etc.

For Servlet/JSP,
- design: abuse MVC (solution: use framework, e.g. Struts ... but still able to abuse by sucks developer)

... etc.
 
Marshal
Posts: 79177
377
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
. . . and welcome to the Ranch
 
Rancher
Posts: 4803
7
Mac OS X VI Editor Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Too little time allowed to program the solution.
Too little time allowed to test the solution.
Bosses who read an article about X being the greatest thing in the world and the solution that makes it unnecessary to hire smart, talented, and capable software engineers.

you get the idea.....
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic