我想在LispWorks中使用Hunchentoot的easy-ssl-acceptor。但是,我看到这类接受器具有以下功能语法#-:hunchentoot-no-ssl。
这个特性确实出现在我的*features*列表中,所以我不能使用这个类。这里的问题是什么?为什么要将:hunchentoot-no-ssl添加到我的*features*中?我如何解决这个问题,这样我才能使用easy-ssl-acceptor类?
PS:我在使用LispWorks 7.1的macOS 10.13上。
发布于 2020-11-04 19:29:25
目前还不清楚这个功能是如何进入你的*features*的,但在这种情况下,最简单的做法是手动将其从*features*中删除,然后强制重建Hunchentoot:
* (alexandria:removef *features* :hunchentoot-no-ssl)
* (asdf:load-system :hunchentoot :force t)https://stackoverflow.com/questions/52628273
复制相似问题