Middleware can be added directly to your routes. e.g.

(routes
 (wrap-foo foo-routes)
 (wrap-bar bar-routes))

Routes are just Ring handlers that return nil to indicate they haven't
matched the URI.

- James


On 28 June 2014 19:25, Jonathon McKitrick <[email protected]> wrote:

> I'd like my app to server the WWW content as well as the API for the
> client to call.  How can I used different middleware with each?
>
> Here's what I have so far:
>
> (def app
>   (-> (handler/site
>        (routes
>         www-routes
>         api-routes
>         ;; Should this replace the line below?
>         ;;(wrap-file "public" )
>         (route/resources "/")
>         (route/not-found "Not Found")))
>       ;; Can we just wrap API handlers?
>       (wrap-restful-response)))
>
>  --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to [email protected]
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to