in reply to CGI (Perl) vs JSP

Which you should use is probably 80% down to what your team prefers. If you all are used to Java, then Java will be easier. OTOH, you might all just "feel like" learning something new.

Never mind how much people get paid. Start worrying about that at your age and you will be a wage slave before you are thirty.

With those sage counsels out of the way, I can tell you a bit about JSP equivalents in Perl.

dave hj~

Replies are listed 'Best First'.
Re: Re: CGI (Perl) vs JSP
by drewbie (Chaplain) on Mar 11, 2002 at 20:13 UTC
    I primarily use TT in my CGI projects. It's not the fastest system, but it's fast enough and very flexible. I've also used HTML::Template, but switched to TT w/ the next release of my project.

    My reason was that I (the programmer) had to do too much work to get the data in the correct format H:T required so the HTML guys could do their thing. With H:T I had to do all kinds of massaging because the syntax is very simple (by design). With TT, I just throw data structures at the template folks and they can use it how they want since TT can parse all kinds of data structures.

    Just my $.02.