Class Not Found Exception但它在同一个包中

时间:2018-04-18 02:29:55

标签: java firebase servlets firebase-realtime-database classnotfoundexception

所以我有一个名为DataGrabber的类,它使用Java Wrapper for Firebase从我的Firebase数据库中获取数据。我包含了依赖项,并且所有java类都在同一个包中,因此它们应该都可以相互访问。

但是,抛出了ClassNotFoundException     firebase = new Firebase(String url);

public class DataGrabber {

    Firebase firebase;
    FirebaseResponse response;

    public DataGrabber(String url) {
        try {
            firebase = new Firebase(url);
        } catch (FirebaseException e) {
            e.printStackTrace();
        }
    }
}

Here is the error message

1 个答案:

答案 0 :(得分:1)

我找到了上述错误的解决方案,对于依赖关系,它不足以在库中引用它们,但是你需要将它们导入到WEB-INF / lib中!