gpt4 book ai didi

json - Clojure JSON : Exception: com. fastxml.jackson.core.JsonGenerationException:无法对类的对象进行 JSON 编码:

转载 作者:行者123 更新时间:2023-12-01 05:00:56 25 4
gpt4 key购买 nike

我正在尝试使用 clojure neocons 在我的 Neo4j 数据存储中创建一个节点,但我遇到了一个我认为与格式化 json 相关的错误:

Exception: com.fasterxml.jackson.core.JsonGenerationException: Cannot JSON encode object of class: class recursiftion.dao_graph$create_node: recursiftion.dao_graph$create_node@32693b5
generate.clj:148 cheshire.generate/generate
generate.clj:119 cheshire.generate/generate
core.clj:31 cheshire.core/generate-string
core.clj:21 cheshire.core/generate-string
cypher.clj:51 clojurewerkz.neocons.rest.cypher/query
core.clj:2440 clojure.core/comp[fn]
dao_graph.clj:428 recursiftion.dao-graph/create-node
model.clj:131 recursiftion.model/createNode
controller.clj:206 recursiftion.controller/fn
core.clj:99 compojure.core/make-route[fn]
core.clj:45 compojure.core/if-route[fn]
core.clj:30 compojure.core/if-method[fn]
core.clj:112 compojure.core/routing[fn]
core.clj:2570 clojure.core/some
core.clj:112 compojure.core/routing
RestFn.java:139 clojure.lang.RestFn.applyTo
core.clj:632 clojure.core/apply
core.clj:117 compojure.core/routes[fn]
keyword_params.clj:32 ring.middleware.keyword-params/wrap-keyword-params[fn]
...

根据错误报告,我怀疑这可能与柴郡有关。但我很困惑,因为我没有在发生错误的文件中包含 Cheshire 库。

我把它作为我的包装器,因为我正在制作 cors POST & GET 请求,我需要从我的 controller.clj 返回 JSON
(def app 
(-> (handler/api app-routes)
(middleware/wrap-json-body {:keywords? true})
(middleware/wrap-json-response)
(wrap-cors routes #"^http://localhost:9000$")))

以下是我的 controller.clj 中引用的库
(ns recursiftion.controller
(:use [ring.adapter.jetty :only [run-jetty]]
[recursiftion.websocket :only [wamp-handler]]
[recursiftion.config :only [conf]]
)
(:require [compojure.core :refer :all]
[compojure.handler :as handler]
[compojure.route :as route]
[clojure.java.io :as io]
[ring.util.io :refer [string-input-stream]]
[ring.util.response :as resp]
[ring.util.response :refer [response]]
[ring.middleware.json :as middleware]
[ring.middleware.cors :refer [wrap-cors]]
[environ.core :refer [env]]
[cheshire.core :refer :all]
[recursiftion.model :as model]
[monger.json]
[clojure.pprint :refer [pprint]]))

这是我的 controller.clj 中的 POST 端点代码
(POST "/node/create" request
(let [node_object (or (get-in request [:params :data])
(get-in request [:body :data])
"1ROUTER_ERROR")]
{:status 200
:headers {"Content-Type" "application/json"}
:body (recursiftion.model/createNode node_object)
}
))

以下是通过我的模型并在 dao_graph.clj 中找到的引用库
(ns recursiftion.dao_graph
(:require [clojure.string]
[clojurewerkz.neocons.rest :as nr]
[clojurewerkz.neocons.rest.cypher :as cy]
[clojure.pprint :refer [pprint]])
(:import [org.bson.types.ObjectId])
)

下面是在 dao_graph.clj 中调用的函数的定义:
(defn create-node [ nodeobj ]
(let [ _nodeobj nodeobj ]
(cy/tquery conn create-node { :_nodetype (get-in _nodeobj [:type]) })))

这是返回一个以“...”为键的映射的密码查询
(def create-node "CREATE (m:{_nodetype})
RETURN M;")

我非常感谢您帮助解决这个问题。

最佳答案

没有足够的信息。但是,当 cheshire 无法识别其被告知编码为 json 的数据类型时,经常会出现此异常。该错误看起来像您可能正在尝试对函数进行 json 编码而不是从函数输出?我会在您的端点中添加一个 println 并打印出您认为返回的内容。如果输出看起来像一个函数对象而不是 json 可以编码的东西,那可能是原因。

至于发生这种情况的地方,我的猜测是您的中间件正试图将响应正文编码为 json。

关于json - Clojure JSON : Exception: com. fastxml.jackson.core.JsonGenerationException:无法对类的对象进行 JSON 编码:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32785486/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com