i have a web app deployed on path
/var/lib/tomcat6/webapps/abc/
in server.xml on path /etc/tomcat/server.xml i have added following lines.
<Context docBase="/var/lib/tomcat6/webapps/abc/" path="/" reloadable="true"> <Resource auth="Container" driverClassName="com.mysql.jdbc.Driver" maxActive="20" maxIdle="10" maxWait="10000" name="jdbc/abcDB" password="abc" type="javax.sql.DataSource" url="jdbc:mysql://localhost:3306/abc" username="abc"/> </Context>
inside the host tag.
now when i restart tomcat ... and hit http://localhost:8080/
nothing appears but when I enter http://localhost:8080/abc
home page is displayed which means above entry in server.xml is not taking affect.
What am i doing wrong ??