I am trying to use scalate with SSP template on Google Appengine.
I do as follows:
scalate create jersey mygroup myartifactid
I remove all the files at src/, and I just create these simple four files:
src//main/webapp/index.ssp
src//main/webapp/images/myimage.png
src//main/webapp/WEB-INF/appengine-web.xml
src//main/webapp/WEB-INF/web.xml
This is the content of these files:
index.ssp
<html>
<body>
<h1>test</h1>
<p>
1 + 1 = <%= 1+1 %>
</p>
<img src="images/myimage.png"/>
</body>
</html>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<display-name>MyWebApp</display-name>
<description>My Web App</description>
<filter>
<filter-name>TemplateEngineFilter</filter-name>
<filter-class>org.fusesource.scalate.servlet.TemplateEngineFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>TemplateEngineFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.ssp</welcome-file>
</welcome-file-list>
</web-app>
appengine-web.xml
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>greetingstest1</application>
<version>1</version>
<threadsafe>false</threadsafe>
</appengine-web-app>
Then I compile with:
mvn clean war:war
This creates the directory target/myartifactid-1.0-SNAPSHOT
I copy the extra appengine lib files from ${appengine_sdk}/lib/user/ to target/myartifactid-1.0-SNAPSHOT/WEB-INF/lib
So I have these files:
target/myartifactid-1.0-SNAPSHOT/index.ssp
target/myartifactid-1.0-SNAPSHOT/images/myimage.png
target/myartifactid-1.0-SNAPSHOT/WEB-INF/appengine-web.xml
target/myartifactid-1.0-SNAPSHOT/WEB-INF/web.xml
target/myartifactid-1.0-SNAPSHOT/WEB-INF/classes
target/myartifactid-1.0-SNAPSHOT/WEB-INF/lib/...
And I test the local google app engine:
${appengine_sdk}/bin/dev_appserver.sh target/myartifactid-1.0-SNAPSHOT
THE PROBLEM:
I get a web page as a static file, that is, the expression "<%= 1+1 %>" in index.ssp is copied instead of being processed and evaluated to the string "2".
What can be the problem?
from what I understood, it is not mandatory to tell appengine-web.xml which files are static or resources.
Note: running mvn jetty:run works correctly (this uses the jetty web container, instead of the local google app engine)
What can be the problem?