blob: 4793b27542012d005e70393618aa8ff3f6d0819a [file] [log] [blame]
// TODO Untested code; see brooklyn-example for better maintained examples!
public class TomcatServerApp extends ApplicationBuilder {
@Override
protected void doBuild() {
addChild(EntitySpecs.spec(TomcatServer.class)
.configure("httpPort", "8080+")
.configure("war", "/path/to/booking-mvc.war")));
}
}