avaje / avaje-jex

Web routing for Jetty, Grizzly, JDK Http server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

By default include HealthPlugin, need to explicitly turn it off when not wanted

rbygrave opened this issue · comments

Turn it off via ex.config.health = false;

Jex.create()
      .configure(jex -> {
        jex.config.health = false;
      })
...