gpt4 book ai didi

java - 尽管定义正确,但 Play 框架路由无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-04 07:48:51 24 4
gpt4 key购买 nike

我在 Play 的路由中定义了这个简单的路由:

POST /test/post/$id<[0-9]+>  controllers.Test.post(id: Long)  

这是Test.post的代码方法:

public static Result post(long id)
{
return ok("working");
}

同一 Controller 中的另一条路线,POST /test controllers.Test.index()工作正常。然而每当我访问 http://localhost:9000/test/post/3 ,我立即在 Firefox 中收到“连接重置”错误,在 google chrome 中收到“空响应”错误。所有其他路线都工作正常。

我做错了什么?

最佳答案

在 Action 中使用 Long 对象而不是 long native 类型:

public static Result post(Long id)
{
return ok("working");
}

关于java - 尽管定义正确,但 Play 框架路由无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14844522/

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