我正在使用Spring框架和Clojure创建一个Web应用程序。为此,我创建了一个扩展AbstractUrlHandlerMapping
的类,然后注册了几个处理程序,如下所示:
(:use [clojure.tools.logging :only (debug info error)])
(defn -post-init [this]
(do
(.registerHandler this "/services.html"
(proxy [AbstractController] []
(handleRequestInternal [request response]
(info "Hello everyone")
(ModelAndView. "services" "lof" "List of services")
)
)
)....
Spring框架生成的所有事件都记录在日志文件中(在类路径中配置了log4j.properties),但没有记录任何应用程序消息。