when i deployed
servlet in
tomcat , and i put the this code as bellowed to Web.xml and and i run it in the web browser , it show error "The requested resource (/ServletProduct/product) is not available." , So what is the problem on this configure , I am sorry for this question because I am first servlet and tomcat
<servlet>
<servlet-name>My</servlet-name>
<servlet-class>hall.ThreeParam</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>My</servlet-name>
<url-pattern>/product</url-pattern>
</servlet-mapping>