fiz essa mudanca no meu web.xml e agora minha aplicacao naum funciona mais…
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<session-config>
<session-timeout>10</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>opcoes.jsp</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>erro404.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>erro.jsp</location>
</error-page>
</web-app>