Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
188 views
in Technique[技术] by (71.8m points)

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

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...