Apache Sling Scripting Java Support

Clone this repo:
  1. 0983b4f Bump org.apache.sling:org.apache.sling.api from 2.11.0 to 2.25.4 by Stefan Seifert · 8 weeks ago master
  2. 5a41295 SLING-12730 ignore spotless code reformatting commit in git blame by Stefan Seifert · 8 weeks ago
  3. 4212881 SLING-12730 apply spotless formatting by Stefan Seifert · 8 weeks ago
  4. 14deb7c SLING-12730 Update to Parent 62 by Stefan Seifert · 8 weeks ago
  5. ec20236 SLING-12459 - Redirect sonarcloud notifications to commits@apache.sling.org by Robert Munteanu · 7 months ago

Apache Sling

Build Status Coverage Sonarcloud Status JavaDoc Maven Central Contrib scripting License

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.