This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-02-19
Channels
- # beginners (134)
- # boot (4)
- # cider (23)
- # clara (2)
- # cljs-dev (2)
- # cljsrn (4)
- # clojure (147)
- # clojure-austin (9)
- # clojure-berlin (2)
- # clojure-dusseldorf (2)
- # clojure-france (2)
- # clojure-italy (11)
- # clojure-russia (1)
- # clojure-spec (18)
- # clojure-uk (182)
- # clojurescript (40)
- # community-development (5)
- # cursive (29)
- # datascript (6)
- # datomic (18)
- # duct (6)
- # emacs (4)
- # events (1)
- # fulcro (46)
- # hoplon (5)
- # jobs-discuss (12)
- # keechma (1)
- # luminus (7)
- # lumo (1)
- # off-topic (11)
- # onyx (9)
- # parinfer (5)
- # protorepl (1)
- # re-frame (18)
- # reagent (23)
- # reitit (2)
- # ring (5)
- # ring-swagger (20)
- # schema (1)
- # shadow-cljs (32)
- # spacemacs (1)
- # specter (2)
- # vim (26)
@buzzdan We use it in production. What's your question?
How can I add something like shutdown hook into the Jetty or other servers? I know that I can do it via Ring's init
and destroy
functions but what if I just want to run server via lein run
(which calls (jetty/run-jetty dummy-app {:port 8090})
)? So is there a way how to gracefully shutdown such an application?
I have a application on the AWS which uses a threadpool so I suppose that it needs to shutdown the pool between deployments
So far I was doing it with Ring on the Tomcat, now I want to run the app in Java SE environment therefore is not an option anymore