In the web framework thread, a number of routing libraries were mentioned but 
they all seemed to be based on explicit routing.

I’m used to working in web environments where routing is usually implicit so 
that a request for:

        /foo/bar

gets automatically routed to a method bar() in a handler named foo (usually as 
a class).

This is nice because you don’t need to declare every route: you can just write 
a view template in the appropriate place and you have a web response — and you 
can add an appropriately named handler function and have the business logic 
automagically wired in.

You can generally provide overrides for some explicit routes as well if you 
want them handled differently.

Are there any such libraries for Clojure? Are they well-maintained?

Sean Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"Perfection is the enemy of the good."
-- Gustave Flaubert, French realist novelist (1821-1880)



-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
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 clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to