wiztowar

WizToWar is a simple library that helps you deploy Dropwizard services as a WAR in a WAR container

License

License

GroupId

GroupId

com.twilio
ArtifactId

ArtifactId

wiztowar
Last Version

Last Version

1.3
Release Date

Release Date

Type

Type

jar
Description

Description

wiztowar
WizToWar is a simple library that helps you deploy Dropwizard services as a WAR in a WAR container
Project URL

Project URL

http://github.com/twilio/wiztowar
Source Code Management

Source Code Management

http://github.com/twilio/wiztowar

Download wiztowar

How to add to project

<!-- https://jarcasting.com/artifacts/com.twilio/wiztowar/ -->
<dependency>
    <groupId>com.twilio</groupId>
    <artifactId>wiztowar</artifactId>
    <version>1.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.twilio/wiztowar/
implementation 'com.twilio:wiztowar:1.3'
// https://jarcasting.com/artifacts/com.twilio/wiztowar/
implementation ("com.twilio:wiztowar:1.3")
'com.twilio:wiztowar:jar:1.3'
<dependency org="com.twilio" name="wiztowar" rev="1.3">
  <artifact name="wiztowar" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.twilio', module='wiztowar', version='1.3')
)
libraryDependencies += "com.twilio" % "wiztowar" % "1.3"
[com.twilio/wiztowar "1.3"]

Dependencies

compile (2)

Group / Artifact Type Version
com.yammer.dropwizard : dropwizard-core jar 0.6.2
com.yammer.metrics : metrics-annotation jar 2.2.0

Project Modules

There are no modules declared in this project.

WizToWar - Have your cake and eat it too

WizToWar is a simple library that enables a Dropwizard service to also be deployable in a WAR container such as Tomcat.

By following the steps in the usage section below you will be able to create both a Dropwizard jar and a WAR of the same service.

Caveat emptor:

  • Only tested on Tomcat 7
  • No support for bundles
  • Many features untested
  • Goes against the whole philosophy of Dropwizard...

Usage

Include the wiztowar jar as a dependency:

<dependency>
    <groupId>com.twilio</groupId>
    <artifactId>wiztowar</artifactId>
    <version>1.3</version>
</dependency>

Create a new class for your application like this:

package com.twilio.mixerstate;

import com.google.common.io.Resources;
import com.twilio.wiztowar.DWAdapter;
import com.yammer.dropwizard.Service;

import java.io.File;
import java.net.URISyntaxException;
import java.net.URL;


public class MixerStateDWApplication extends DWAdapter<MixerStateServiceConfiguration> {
    final static MixerStateService service = new MixerStateService();

    /**
    * Return the Dropwizard service you want to run.
    */
    public Service getSingletonService(){
         return service;
    }

    /**
    * Return the File where the configuration lives.
    */
    @Override
    public File getConfigurationFile() {

        URL url = Resources.getResource("mixer-state-server.yml");
        try {
            return new File(url.toURI());
        } catch (URISyntaxException e) {
            throw new IllegalStateException(e);
        }
    }
}

Create a main/webapp/WEB-INF/web.xml file:

<?xml version="1.0" encoding="UTF-8"?>
<web-app>
    <!--- This listener is required to hook in to the lifecycle of the WAR -->
    <listener>
        <listener-class>com.twilio.mixerstate.MixerStateDWApplication</listener-class>
    </listener>
</web-app>

Make sure you also build a WAR artifact

There are two alternatives to building a war:

a. Add instructions to also build a WAR

This goes in <build><plugins> section:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.4</version>
    <executions>
        <execution>
            <id>default-war</id>
            <phase>package</phase>
            <goals>
                <goal>war</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <webappDirectory>target/webapp</webappDirectory>
    </configuration>
</plugin>

b. Change packaging of your Dropwizard service

If you do not intend to run the Dropwizard service standalone, you can simply change the "packaging" element in pom.xml to be "war" instead of "jar".

com.twilio

Twilio

Versions

Version
1.3
1.2