| commit | e7991e05b0fe0a3d2acbab89daa0a8b451e50050 | [log] [tgz] |
|---|---|---|
| author | Radu Cotescu <radu@apache.org> | Wed Jun 02 18:09:55 2021 +0200 |
| committer | Radu Cotescu <radu@apache.org> | Wed Jun 02 18:09:55 2021 +0200 |
| tree | 0b84726e328118e95e7c0055348d9fd75f9ffdc7 | |
| parent | cb8e3643434b7b57c99caa111bd8df5012170e41 [diff] |
trivial: align the name with the JIRA version
This module is part of the Apache Sling project.
This module implements a script engine for java servlets, that are compiled on the fly by Sling.
To test it:
mvn -P autoInstallBundle clean install -Dsling.url=http://localhost:8080/system/console
If Sling is running with the launchpad/testing setup.
package apps.foo;
import java.io.IOException; import javax.servlet.ServletException; import org.apache.sling.api.SlingHttpServletRequest; import org.apache.sling.api.SlingHttpServletResponse; import org.apache.sling.api.servlets.SlingSafeMethodsServlet;
public class foo extends SlingSafeMethodsServlet {
protected void doGet(SlingHttpServletRequest request, SlingHttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/plain");
response.getWriter().write("Response from " + getClass().getName() + " at " + new java.util.Date());
}
}
Response from apps.foo.foo at Tue Nov 18 14:49:14 CET 2008