Skip to content

Instantly share code, notes, and snippets.

@kelapure
Last active August 16, 2017 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kelapure/4787e2bf211ec49c67cbf849d1e3bfc9 to your computer and use it in GitHub Desktop.
Save kelapure/4787e2bf211ec49c67cbf849d1e3bfc9 to your computer and use it in GitHub Desktop.
Liberty server.xml config for batch jsr352 apps
<?xml version="1.0" encoding="UTF-8"?>
<server description="Default server">
<!-- Enable features -->
<featureManager>
<feature>batch-1.0</feature>
<feature>ssl-1.0</feature>
</featureManager>
<!-- To allow access to this server from a remote client host="*" has been added to the following element -->
<httpEndpoint id="defaultHttpEndpoint"
host="*"
httpPort="9080"
httpsPort="9443" />
<keyStore id="defaultKeyStore"/>
<!-- Automatically expand WAR files and EAR files -->
<applicationManager autoExpand="true"/>
</server>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment