似乎我在路由中定义 Long 变量时遇到问题。这是路由文件中的行:
GET /topic/:id controllers.Topics.show(id: Long)
这是处理这条路线的方法:
public static Result show(long id) {
// handle request here...
}
我得到的是错误 324:
错误 324 (net::ERR_EMPTY_RESPONSE):服务器关闭连接而不发送任何数据。
我认为问题出在Long数据类型上,因为使用Int它就像一个魅力。
使它起作用的调整是什么?