Added ability to run the war file from the commandline by embedding Jetty#62
Open
boxheed wants to merge 7 commits into
Open
Added ability to run the war file from the commandline by embedding Jetty#62boxheed wants to merge 7 commits into
boxheed wants to merge 7 commits into
Conversation
…constants public.
Development
Collaborator
|
Thanks Andrew. This is very useful. I've merged your request into a jetty-boot branch for now. There is still some cleanup to do in order to get this to work in Tomcat 7 due to the JSTL changes. I'll sort that out and update the wiki docs before merging back into master and cutting a 1.5.2 release. |
Author
|
Let me know if there is anything I can do to help. Cheers Andy |
Contributor
|
I'm going to take a look into this further after the rebranding and updating Spring, etc. I'd like this feature to for demo's, and running it in Docker, or via Vagrant and Ansible. I need to get all the various app servers setup with java7 and 8 in an automated way to make regression testing such changes easier. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi Mike,
Thanks for the brilliant work on Zuul, it fills a part of the jigsaw with centralized configurations that is missing. Anyway I like to run my apps on the command line rather than putting them in a container so thought you might like this tweak to the app so that it can run using an embedded Jetty container in the war file so that you can run it by doing java -jar zuul.war.
I followed these instructions here for adding Jetty support to Zuul: http://uguptablog.blogspot.co.uk/2012/09/embedded-jetty-executable-war-with.html.
The following is a summary of the changes:
Let me know what you think
Cheers
Andy