Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将泛型类实例传递给 JSF EL 表达式中的方法?
例如这样的:
#{beanController.someMethod(new ClassToInstance())}
它对于具有泛型参数的方法应该非常有用。
正常的过程是创建ClassToInstance一个托管 bean:
ClassToInstance
@ManagedBean public class ClassToInstance {}
或者当您更喜欢 CDI 时:
@Named public class ClassToInstance {}
然后你可以使用:
#{beanController.someMethod(classToInstance)}