我在apache karaf上使用osgi,我正在尝试使用 kafka 和 debezium 来运行 osgi环境。
kafka 和 debezium 不是 osgi ready (karaf不会将它们视为捆绑包),所以我使用eclipse“插件”对它们进行了渗透-in项目“。我对它们进行了实验的罐子如下:debezium-embedded,debezium-core,kafka connect-api,kafka connect-runtime。
在我开始时,当我尝试运行debezium时,我得到了很多“Class not found exception”。
为了解决这个问题,我更改了两个包的清单。我向调用者添加了一个导入包,并向被调用的bundle添加了一个导出包。使用这个我可以解决classNotFound问题。
解决了所有classNotfound问题后,我得到 NoClassDefFoundError
NoClassDefFoundError意味着类加载器在尝试加载时无法找到.class ...但我确实导入了所有包并导出它们。
如何处理 osgi environement中的 NoClassDefFoundError
[编辑添加代码]
这是类Monitor:
public class Monitor {
private Consumer<SourceRecord> consumer = new Consumer<SourceRecord>() {
public void accept(SourceRecord t) {
System.out.println("Change Detected !");
}
};
public void connect() {
System.out.println("Engine Starting");
Configuration config = Configuration.create()
/* begin engine properties */
.with("connector.class", "io.debezium.connector.mysql.MySqlConnector")
.with("offset.storage", "org.apache.kafka.connect.storage.FileOffsetBackingStore")
.with("offset.storage.file.filename", "d:/pathTooffset.dat")
.with("offset.flush.interval.ms", 60000)
/* begin connector properties */
.with("name", "my-sql-connector").with("database.hostname", "localhost").with("database.port", 3306)
.with("database.user", "root").with("database.password", "apassword").with("server.id", 10692)
.with("database.server.name", "localhost")
.with("database.history", "io.debezium.relational.history.FileDatabaseHistory")
.with("database.history.file.filename", "d:/pathTOdbhistory.dat")
.build();
try {
// Create the engine with this configuration ...
EmbeddedEngine engine = EmbeddedEngine.create().using(config).notifying(consumer).build();
Executor executor = Executors.newFixedThreadPool(1);
executor.execute(() -> {
engine.run();
});
} catch (Exception e) {
e.printStackTrace();
}
}
我的激活者:
public class Activator implements BundleActivator {
public void start(BundleContext context) throws Exception {
Monitor monitor = new Monitor();
monitor.connect();
}
public void stop(BundleContext context) throws Exception {
}}
答案 0 :(得分:3)
问题必须在EmbeddedEngine内。错误无法初始化类意味着类的某些静态初始化不起作用。请参阅此相关问题noclassdeffounderror-could-not-initialize-class-error。
我建议在调试模式下运行karaf并通过初始化这个类进行调试。