You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org> on 2014/08/28 03:05:59 UTC

[jira] [Assigned] (TAP5-2174) Add main method the Jetty7Runner

     [ https://issues.apache.org/jira/browse/TAP5-2174?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship reassigned TAP5-2174:
------------------------------------------

    Assignee: Howard M. Lewis Ship

> Add main method the Jetty7Runner
> --------------------------------
>
>                 Key: TAP5-2174
>                 URL: https://issues.apache.org/jira/browse/TAP5-2174
>             Project: Tapestry 5
>          Issue Type: New Feature
>          Components: tapestry-test
>    Affects Versions: 5.4
>            Reporter: Barry Books
>            Assignee: Howard M. Lewis Ship
>            Priority: Minor
>              Labels: enhancement
>
> 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));
> 	}



--
This message was sent by Atlassian JIRA
(v6.2#6252)