gpt4 book ai didi

java - Play 框架 - 在带有 Class 参数的路由中调用 Controller

转载 作者:行者123 更新时间:2023-11-30 11:20:52 25 4
gpt4 key购买 nike

我想创建 Controller 方法并使用 Class 参数对其进行参数化以在路由中调用它:

GET     /api/res1           controllers.GenericController.index(clazz:Class = Res1.class)
GET /api/res2 controllers.GenericController.index(clazz:Class = Res2.class)

并在编译 Play 期间大喊:

[error] /home/../workspace/repo/prototype/conf/routes:26: identifier expected but 'class' found.
[error] /home/../workspace/repo/prototype/conf/routes:26: ')' expected but '}' found.

为什么是'}'?以及如何实现我的想法?

最佳答案

试着改成这样:

/api/res1   controllers.GenericController.index(clazz: Class[_] = classOf[full.package.name.Res1])

对我来说效果很好。

关于java - Play 框架 - 在带有 Class 参数的路由中调用 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22531570/

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