GWT rebinder: TypeOracle.getType(“foo.Foo”) returns null: how to get the real error?

南笙酒味 提交于 2019-12-25 06:34:50

问题


I have a class Foo:

package foo;
import bar.Bar; // Bar is super-sourced badly
public class Foo {
    private Bar b = new Bar(); // no-arg constructor of Bar doesn't exist
    ...
}

When I have a rebind that does:

JClassType t = TypeOrace.getType("foo.Foo"); // return null

That returns null, even though "foo.Foo" exists. The real problem is that Bar line inside Foo.java. Is there anyway to get the real error instead of null? So something that contains the word Bar or the line private Bar b = new Bar(); or a line number?


回答1:


As suggested by tbroyer as a comment.

Configure the gwt-maven-plugin to failOnError:

<plugin>
  <groupId>net.ltgt.gwt.maven</groupId>
  <artifactId>gwt-maven-plugin</artifactId>
  <configuration>
    <failOnError>true</failOnError>
  </configuration>
</plugin>

And one of the errors in the output list will explain the problem.



来源:https://stackoverflow.com/questions/43674908/gwt-rebinder-typeoracle-gettypefoo-foo-returns-null-how-to-get-the-real-er

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!