Skip to content

Instantly share code, notes, and snippets.

@rwillig
Created March 11, 2015 19:44
Show Gist options
  • Save rwillig/258315e48cdee6b13033 to your computer and use it in GitHub Desktop.
Save rwillig/258315e48cdee6b13033 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" metadata-complete="true" version="3.0" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<display-name>boot-webapp</display-name>
<description>boot-webapp</description>
<servlet>
<servlet-name>boot-webapp</servlet-name>
<servlet-class>tailrecursion.ClojureAdapterServlet</servlet-class>
<init-param>
<param-name>serve</param-name>
<param-value>castra.core/app</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>boot-webapp</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment