i am using google app engine to develop java web app, my problem that all my jsp file can be reached under
http://localhost:8888/namefile.jsp,
, i put all my jsp file in the war folder
where should i put the jsp files to avoid this? or just should i modify the web.xml modifying the url mapping ?
here is my web.xml file
<servlet>
<servlet-name>frontController</servlet-name>
<servlet-class>com.myapp.frontcontroller.FrontController</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>frontController</servlet-name>
<url-pattern>/myapp/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>home.jsp</welcome-file>
</welcome-file-list>
thanks in advance.