Web application Setup in Tomcat in linux machine

HI to ALL,

I got a problem, ie upto now i am using the netbeansIDE 5.5 and i created a project name clientino . in netbeans i created some packages and some jsp pages.

Now i have installed linux in my machine and with jdk1.60u1 and tomcat 6.0.13, now i have to configure my web-application in this tomcat.

Can any help ..i have gone through some manuals.. but i didn't get clearty.. where i have place my packages and jsp pages and mysql jdbc drivers

[477 byte] By [kurra99a] at [2007-11-27 5:34:12]
# 1

kurra,

The manuals are all there. The tomcat manual is, in my somewhat limited experience, a particularly good one... So I'd start there.

You do know you won't be able to configure this all in netbeans, don't you?... You'll have to either deploy it all manually every time it changes by copying the class files and jsp pages to tomcats directories, or you'll need to write a script to do the job... probably an "ant" script.

"Ant" is a free java build utility, which works with XML "scripts".

On my machine, mysql-connector-java-5.0.4-bin.jar is in the C:\Program Files\Apache\Tomcat5.5\common\lib\ directory... which seems to work all-right, but I recall some folks insisting that it should go in shared\lib, which didn't work for me as soon as I started using a connection pool.

BTW, I highly commend the C3PO connection pooling package.

Which DBMS are you using?

Message was edited by: corlettk

corlettka at 2007-7-12 15:02:14 > top of Java-index,Java Essentials,New To Java...
# 2

Hi,

I am using the Mysql Database.

i was confused in reading the manuals.. some says to configure sever.xml and some says to copy the .java files in src, and web-inf.

i was totally confused in configuring by webapplication.

i am seeking the actual procedure what i have to do?

As you said i will place the J-dom,Xerces and mysql -connector-java.jar in common/lib

Thanks

Kurra

kurra99a at 2007-7-12 15:02:14 > top of Java-index,Java Essentials,New To Java...