I met the same problem with other spring's web-app.
If project is built by maven try change dependency scope to provided for jars : servlet-api and jsp-api
Code:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
and build project by maven.
If you run project by eclipse remove 2 jars from path below
Code:
WORKSPACE/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/PROJECT_NAME/WEB-INF/lib
or in settings tell eclipse to not add 2 jars to app.war