本文介绍了从带有 ClassTag 的 Java Play 框架调用 Scala的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图从 Play Java 类调用一个以 ClassTag 作为参数的 Scala 方法
I am trying to make a call from a Play Java class to a Scala method which takes a ClassTag as a parameter
我失败的尝试是
Option<LocalUser> localUser = Cache.getAs(userId.userId(), app, new ClassTag<LocalUser>() );
API 方法如下
Cache.getAs(String key, Application app, ClassTag<LocalUser> ct );
推荐答案
我在从 Java 调用不同的 Scala API 时遇到了同样的问题.你会使用:
I had the same issue when calling a different Scala API from Java. You'd use:
ClassTag<LocalUser> tag = scala.reflect.ClassTag$.MODULE$.apply(LocalUser.class);
我不确定为什么 Scala 需要另一个类和一个静态对象,但我认为这本质上等同于静态方法 ClassTag.apply(Class)
.
I'm not sure why Scala requires another class and a static object, but I think this is essentially the equivalent of a static method ClassTag.apply(Class)
.
这篇关于从带有 ClassTag 的 Java Play 框架调用 Scala的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!