Clojure web application - where do I start?

前端 未结 5 1631
無奈伤痛
無奈伤痛 2021-01-30 18:14

So lately I\'ve been looking into Clojure, and I love the language. I would like to see if I can make a small web application in it, just to challenge myself. However, I have ab

5条回答
  •  春和景丽
    2021-01-30 18:48

    One thing to note if you are going to go with FastCGI is java is not like other scripting languages there is a start up time for starting up the JVM unlike say ruby or python. And it is a heavy operation to start JVM for each request.

    If i understand you question correctly you are looking for a native java way for creating applications. If so compojure does exactly that it creates a servlet for you behind the scenes so in the end you can create a clojure web application just like the ones in java and deploy it on to any application server.

提交回复
热议问题