假设我有一个foo.PoJo类,它具有一个静态的公共方法String,根据offical reference,这部分代码应返回一个Method实例。
SpelExpressionParser parser = new SpelExpressionParser();
Expression exp = parser.parseExpression("T(foo.PoJo).getMethod('print')");
Method m = (Method) exp.getValue();
但是,此代码将引发异常:
Exception in thread "main" org.springframework.expression.spel.SpelEvaluationException: EL1004E:(pos 49): Method call: Method getMethod(java.lang.String) cannot be found on foo
.PoJo type
at org.springframework.expression.spel.ast.MethodReference.findAccessorForMethod(MethodReference.java:185)
at org.springframework.expression.spel.ast.MethodReference.getValueInternal(MethodReference.java:107)
at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:57)
at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:93)
at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:66)
at com.duowan.realtime.scheduled.batch.temp.PoJo.main(PoJo.java:57)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)
我的猜测是T()操作将返回一个Class对象,因此您可以访问此对象的静态方法和字段,但是Method getMethod(String name,Class ... parameterTypes)函数只是一个公共方法,不是静态的,因此引发了异常。
如果我是对的,那么参考文献可能需要更新。有人知道吗?
最佳答案
T()
实际上返回类实例,并且您可以访问在Foo
本身上声明的静态方法。在Java中,您必须使用Foo.class.getMethod()
。
看起来Spring在3.1中增加了对访问类方法的支持。使用3.0.x时,我只会失败。
当前的Spring Framework版本是4.1.0。
编辑:
Confirmed - Fixed in 3.1.3。
关于java - SpEL getMethod不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26029760/