Hi,
I am building an application on GAE and let's say I just want a plain about page for the application. The about.jsp file should or should not have an servlet class?
in in web.xml I have something like
<servlet>
<servlet-name>application</servlet-name>
<servlet-class>application.applicationServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>application</servlet-name>
<url-pattern>/about</url-pattern>
</servlet-mapping>
how do I include the about.jsp file? is this done automatically?