我对 Rexsters Doghouse 有疑问。当我访问狗屋时,我只看到一个带有小菜单的黑色页面,并且在该页面下有一个错误提示
Error: Could not get list of graphs from Rexster
我已经读过,如果尝试从基本 uri 以外的 uri 访问 doghouse,则可能会出现此问题。我的基本 uri 是 localhost:8080,我在 rexster.xml 中设置了它
<rexster>
<http>
<server-port>8080</server-port>
<base-uri>http://localhost</base-uri>
<enable-doghouse>true</enable-doghouse>
</http>
<graphs>
...
当我在 doghouse 页面中查看源代码时,我可以看到我的更改已被应用,因为我可以看到: var GREMLIN_VERSION = "2.4.0"; var BASE_URI = "http://localhost:8080/"
(注意,我之所以使用服务器端口 8080 是因为我在 Tomcat 中部署了 Rexster)。
我不知道出了什么问题。