a good advice

We have a web based content management system running in VB...I am developing a administrator website for that in jsp.It will include setting proper users to access pages edited in the system...then approving certain pages..deleting them etc...

Now I want to know what will be the proper way for my development...

I am new to this environment...So I am a bit confused...I would like to know whether I should carry the devlopment purely in Jsp...or use some other j2ee components like servlets,Ejb...etc..or javabeans etc...

If possible I would also like to get a proper explanation on the advantages and disadvantages of using the above...

If possible...Pl guide me soon..

Thank u.

smita

[744 byte] By [smitaunni] at [2007-9-26 2:19:53]
# 1

If you are interested in actually doing something to the system through a web interface (such as deleting files, setting permissions, etc) it would be easier to do this through servlets. You don't NEED to persay, but when you write a servlet it is a lot more like a regular java application than JSP, which makes it a whole lot easier to access system files. The disadvantage of servlets is, of course, slightly decreased speed of programming and execution.

GN

statusquo at 2007-6-29 9:22:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Thanks for ur suggestion...I know doing servlets has its disadvantages...But just using jsp ....I will have to maintain so many files...Which again does not look proper...
smitaunni at 2007-6-29 9:22:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...