We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
First, create another namespace to set the parameter in:
(ns duracell.strap)
(defn jetty-init [] (.put (System/getProperties) "org.eclipse.jetty.servlet.Default.useFileMappedBuffer" "false") )
Then add :init to serve in build.boot:
(serve :port 8000 :init 'duracell.strap/jetty-init)