SLING-7245 - Validate pull requests using Jenkins
1 file changed
tree: aafc51b13f07a63ac76300440ba63dbd89030e6d
  1. src/
  2. .gitignore
  3. CODE_OF_CONDUCT.md
  4. CONTRIBUTING.md
  5. Jenkinsfile
  6. LICENSE
  7. pom.xml
  8. README.md
README.md

Build Status Maven Central JavaDocs License scripting contrib

Apache Sling Scripting Java Support

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:

  1. Install this bundle in Sling, for example with

mvn -P autoInstallBundle clean install -Dsling.url=http://localhost:8080/system/console

If Sling is running with the launchpad/testing setup.

  1. Create /apps/foo/foo.java in your repository (via WebDAV for example), with this code:

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());
}

}

  1. Request http://localhost:8080/content/foo/*.html which should display something like

Response from apps.foo.foo at Tue Nov 18 14:49:14 CET 2008

  1. The servlet code should be automatically recompiled after any changes.