1

我试图在运行时调用一个静态函数 (Users.dashboard()),我得到了一个验证错误异常。用户类继承 CRUD.java 并且不带任何参数。

在 Home.index() 中:

   public class Home extends Controller {

    public static void index() {

        for (Class<CRUD> clazz : play.Play.classloader
                        .getAssignableClasses(CRUD.class)) {
                    Dashboard d;
                    try {

                        Method m = clazz.getMethod("dashboard");
                        if (m != null) {
                            d = (Dashboard) m.invoke(clazz.newInstance(), new Object[] {});
                        }

                    } catch (SecurityException e) {
                        e.printStackTrace();
                    } catch (ClassNotFoundException e) {
                    } catch (Exception e) {
                    }
                }
    render(dashboards);
}

控制台输出:

@69iahfk3j
Internal Server Error (500) for request GET /home

Oops: VerifyError
An unexpected error occured caused by exception VerifyError: (class: controllers/Home, method: index signature: ()V) Register 1 contains wrong type

play.exceptions.UnexpectedException: Unexpected Error
    at play.Invoker$Invocation.onException(Invoker.java:242)
    at play.Invoker$Invocation.run(Invoker.java:284)
    at Invocation.HTTP Request(Play!)
Caused by: java.lang.VerifyError: (class: controllers/Home, method: index signature: ()V) Register 1 contains wrong type
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Class.java:2427)
    at java.lang.Class.getDeclaredMethods(Class.java:1791)
    at play.utils.Java.findActionMethod(Java.java:98)
    at play.mvc.ActionInvoker.getActionMethod(ActionInvoker.java:602)
    at play.mvc.ActionInvoker.resolve(ActionInvoker.java:85)
    ... 1 more
4

1 回答 1

1

Play 增强了控制器中的公共静态方法,因此对这些方法的调用可能会出现问题。

如果它是实用程序方法,您是否使用 @Util 注释此方法?

如果您只是想在这种情况下重定向到仪表板,您可以简单地在操作上使用重定向,例如

redirect("Users.dashboard");
于 2012-03-05T09:17:25.477 回答