1

我从https://github.com/cgrand/enlive复制了一个非常基本的示例,但它没有编译:

(ns web.handler
  (:require
    [compojure.core :refer :all]
    [compojure.handler]
    [compojure.route :as route]
    [net.cgrand.enlive-html :as html]))

;; Compiler throws in the next line, see the message below.
(html/deftemplate main-template "templates/index.html"
  []
  [:head :title] (html/content "Enlive starter kit"))

(defroutes app-routes
  (GET "/" [] "Hello")
  (GET "/ping/:what" [what] (str "<h1>Ping '" what "'</h1>"))
  (route/resources "/")
  (route/not-found "Not Found"))

(def app
  (compojure.handler/site app-routes))

我得到的错误:

java.lang.NullPointerException, compiling:(handler.clj:9:1)

我用命令运行:

lein ring server-headless

如何让它发挥作用?

编辑

到目前为止我的调查:错误抛出enlive-html.clj:54

(defn tagsoup-parser 
 "Loads and parse an HTML resource and closes the stream."
 [stream]
  (filter map?
    (with-open [^java.io.Closeable stream stream]
      (xml/parse (org.xml.sax.InputSource. stream) startparse-tagsoup)))) ; #54 

大概org.xml.sax没有被引用?我该怎么做lein

4

1 回答 1

2

当找不到模板文件时,通常会发生该错误。使用templates/index.html,它在resources/templates目录或src/templates目录中查找。

于 2013-09-17T22:35:59.680 回答