ring

2019-03-25T09:56:33.001800Z

sure

2019-03-25T09:56:38.002Z

@henrique.barros yep

henrique.barros 2019-03-29T23:14:02.015900Z

@mping can you help me config? do I need to choose Clojure Application or Clojure Repl? I think the problem is that I can't make the debugger run lein ring server...

henrique.barros 2019-03-30T02:03:14.016100Z

I think I made it... needed to setup a -main function with jetty to call the composure app 🙂

grierson 2019-03-25T16:22:10.004Z

With middleware why don't they just change the Request/Response map? Example

seancorfield 2019-03-25T19:34:14.004900Z

Because some middleware needs to operate on both the request and the response map.

seancorfield 2019-03-25T19:35:27.006200Z

Also, using a higher-order function for middleware allows it to compose better: a middleware-wrapped handler is still a handler.

1👍