Details
-
New Feature
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
5.4
Description
Please add a main method to Jetty7Runner (really in tapestry-runner) so Jetty can easily be started from an IDE development environment. Something like
public static void main(String[] args) throws Exception
{ String webapp = System.getProperty("webapp") == null ? "src/main/webapp" : System.getProperty("webapp"); String context = System.getProperty("context") == null ? "/" : System.getProperty("context"); String httpPort = System.getProperty("httpPort") == null ? "8080" : System.getProperty("httpPort"); String sslPort = System.getProperty("sslPort") == null ? "8443" : System.getProperty("sslPort"); new Jetty7Runner(webapp, context, new Integer(httpPort), new Integer(sslPort)); }