我尝试在我的Eclipse插件项目中为log4j使用自定义appender(sentry-raven)但是log4j找不到它。 jar文件(raven-log4j-7.8.6.jar)包含缺少的appender(“com.getsentry.raven.log4j.SentryAppender”),但是Eclipse的类加载器找不到它。
这是我到目前为止所做的:
Eclipse-RegisterBuddy: org.apache.log4j
,Require-Bundle: org.apache.log4j
和Bundle-ClassPath: lib/, .
我的build.properties
看起来像
bin.includes = META-INF/,\
plugin.xml,\
.,\
lib/raven-7.8.6.jar,\
lib/raven-log4j-7.8.6.jar
我在插件的start(BundleContext context)
方法中添加以下代码,以便在加载log4j属性文件时更好地控制。
URL installURL = getBundle().getEntry("/");
String installPath = Platform.asLocalURL(installURL).getFile();
PropertyConfigurator.configure(installPath +"/src/log4j.properties");
一旦调试器跨过最后一个代码行,我就会收到以下错误。
log4j:ERROR Could not instantiate class [com.getsentry.raven.log4j.SentryAppender].
java.lang.ClassNotFoundException: com.getsentry.raven.log4j.SentryAppender cannot be found by org.apache.log4j_1.2.15.v201012070815
at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:461)
at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:372)
...
log4j.properties看起来像
log4j.rootLogger=WARN, default, Sentry
log4j.appender.Sentry=com.getsentry.raven.log4j.SentryAppender
..
答案 0 :(得分:0)
来自OSGI规范本身:
Bundle-ClassPath标头定义了逗号分隔的JAR文件路径名或目录列表 (包内)包含类和资源。
您需要明确列出乌鸦jar文件。
答案 1 :(得分:0)
我从Manifest => Dependencies中删除了org.apache.log4j并手动添加了log4j-1.215.jar(将其保存到lib文件夹并在Manifest => Runtime => Classpath下添加了jar文件)
然后我的自定义appender工作了。