- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 OSGi 的新手,在将 bundle 包含到我的 Maven 项目中时遇到了困难。
我使用 mave-bundle-plugin 创建了一个 API 包和一个实现包。在我的主要项目(Maven 项目)中,我尝试使用 Felix Framework 从 ServiceTracker 获取已实现包的服务。当我最终尝试将获得的服务转换为正确的类型时,我收到了 ClassCastException。
API Maven 项目:
public interface ParserTestService {
String validForStage();
}
API POM:
<artifactId>ParserTest</artifactId>
<version>0.0.2-SNAPSHOT</version>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
<Bundle-Vendor>Apache-Felix</Bundle-Vendor>
<Bundle-Version>0.0.1</Bundle-Version>
<Export-Service>de.ParserTestService</Export-Service>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<version>2.0.4</version>
</dependency>
</dependencies>
实现 Maven 项目:
public class ParserImplService implements ParserTestService {
public String validForStage() {
return "S";
}
}
实现 POM:
<artifactId>ParserTestVersion1</artifactId>
<version>0.0.2-SNAPSHOT</version>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
<Bundle-Vendor>Apache-Felix</Bundle-Vendor>
<Bundle-Version>0.0.1</Bundle-Version>
<Bundle-Activator>de.Activator</Bundle-Activator>
<Export-Package>de</Export-Package>
<Export-Service>de.ParserImplService</Export-Service>
<Import-Package>org.osgi.framework</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<version>2.0.4</version>
<type>bundle</type>
</dependency>
<dependency>
<groupId>de</groupId>
<artifactId>ParserTest</artifactId>
<version>0.0.2-SNAPSHOT</version>
<type>bundle</type>
</dependency>
</dependencies>
Maven 使用以下 list 文件创建了两个 jar 文件:
Manifest-Version: 1.0
Bnd-LastModified: 1340890655296
Build-Jdk: 1.6.0_24
Built-By: br_s1
Bundle-ManifestVersion: 2
Bundle-Name: Parser Test Interface
Bundle-SymbolicName: de.ParserTest
Bundle-Vendor: Apache-Felix
Bundle-Version: 0.0.1
Created-By: Apache Maven Bundle Plugin
Export-Package: de;version="0.0.1"
Export-Service: de.ParserTestService
Tool: Bnd-1.50.0
Manifest-Version: 1.0
Bnd-LastModified: 1340890661890
Build-Jdk: 1.6.0_24
Built-By: br_s1
Bundle-Activator: de.Activator
Bundle-ManifestVersion: 2
Bundle-Name: Parser Test
Bundle-SymbolicName: de.ParserTestVersion1
Bundle-Vendor: Apache-Felix
Bundle-Version: 0.0.1
Created-By: Apache Maven Bundle Plugin
Export-Package: de;version="0.0.1"
Export-Service: de.ParserImplService
Import-Package: org.osgi.framework;version="[1.5,2)"
Tool: Bnd-1.50.0
在我的主要 Maven 项目中,我设置并启动了 Felix 框架。在子文件夹“bundles”中,我复制了上面 Maven 部署过程创建的 jar 文件。在安装例程中,我尝试安装这些包并启动它们:
public class HostActivator implements BundleActivator {
...
public BundleContext getContext()
{
return m_context;
}
...
}
public class HostApplication
{
private HostActivator m_activator = null;
private Felix m_felix = null;
private ServiceTracker m_tracker = null;
public HostApplication()
{
Map<String, Object> configMap = new HashMap<String, Object>();
configMap.put(Constants.FRAMEWORK_SYSTEMPACKAGES_EXTRA, "de.test; version=1.0.0");
m_activator = new HostActivator();
List<BundleActivator> list = new ArrayList<BundleActivator>();
list.add(m_activator);
configMap.put(FelixConstants.SYSTEMBUNDLE_ACTIVATORS_PROP, list);
m_felix = new Felix(configMap);
m_felix.start();
m_tracker = new ServiceTracker(m_activator.getContext(), ParserTestService.class.getName(), null);
m_tracker.open();
}
public void installBundlesFromDir() {
File dir = new File("bundles");
for (File f : dir.listFiles()) {
try {
Bundle b = m_felix.getBundleContext().installBundle("file:"+f.getAbsolutePath());
b.start();
ServiceReference sr = m_felix.getBundleContext().getServiceReference(ParserTestService.class.getName());
ParserTestService service = (ParserTestService) m_felix.getBundleContext().getService(sr);
} catch (BundleException e) {
System.err.println("could not load bundle "+f.getAbsolutePath());
}
}
}
}
对应的POM:
<artifactId>parserUse</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<version>2.0.4</version>
</dependency>
<dependency>
<groupId>de</groupId>
<artifactId>ParserTestVersion1</artifactId>
<version>0.0.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>de</groupId>
<artifactId>ParserTest</artifactId>
<version>0.0.2-SNAPSHOT</version>
</dependency>
</dependencies>
但是,当我尝试调用安装例程时,我收到一个 ClassCastException:
java.lang.ClassCastException: de.ParserImplService cannot be cast to de.ParserTestService
我已经检查了类加载器
ParserTestService.class.getClassLoader()
和
(m_felix.getBundleContext().getService(sr)).getClass().getClassLoader()
它们彼此不同。
我一直认为 OSGi 会为我处理类加载。
有人知道我做错了什么吗?感谢您的帮助!
提前致谢,塞巴斯蒂安
最佳答案
我终于找到了解决这个问题的方法,但只能避免使用 Felix 并改用 Equinox。
1.) API 仅导出包 <Export-Package>de</Export-Package>
2.) Impl 不导出任何内容。它只定义激活器及其导入
<Bundle-Activator>de.Activator</Bundle-Activator>
<Import-Package>org.osgi.framework;de</Import-Package>
3.) 我用 Equinox 替换了整个 HostApplication:
public class HostApplication {
private BundleContext bundleContext;
public HostApplication(String profileName) {
BundleContext bc = null;
Properties frameworkProperties = readCustomProfile(profileName);
frameworkProperties.put("osgi.clean", "true");
frameworkProperties.put("osgi.console", "true");
Map<String, String> frameworkPropertiesMap = new HashMap<String, String>();
for (Object o : frameworkProperties.keySet()) {
frameworkPropertiesMap.put((String) o,
(String) frameworkProperties.getProperty((String) o));
}
EclipseStarter.setInitialProperties(frameworkPropertiesMap);
bc = EclipseStarter.startup(new String[] { "-console", "-dev", "bin" }, null);
}
public boolean containsIegm(String stage, byte[] msg) {
try {
ServiceReference serviceReference = bundleContext.getServiceReference(ParserTest.class.getName());
return ((ParserImplService) bundleContext.getService(serviceReference)).containsIegm(msg);
} catch (Exception ex) {
ex.printStackTrace();
}
return false;
}
public void installBundlesFromDir() {
File dir = new File("bundles");
int i = 0;
for (File f : dir.listFiles()) {
try {
Bundle b = bundleContext.installBundle("file:"+ f.getAbsolutePath());
b.start();
} catch (BundleException e) {
System.err.println("could not load bundle " + f.getAbsolutePath());
}
}
}
}
我通过使用 m_felix 的 BundleContext(参见问题)尝试了与 Felix 完全相同的操作,并完全删除了 HostActivator(我知道这在我的应用程序中没有必要)。但是,我无法让它工作。
无论如何,使用 Equinox,在非 OGSi/非捆绑应用程序中嵌入 OSGi 框架同样容易。
感谢大家的帮助!塞巴斯蒂安
关于java - 在 Maven 项目中使用 OSGi 包的 ClassCastException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11246920/
我正在编写一个 mapreduce 应用程序,它接受(键,值)格式的输入并只显示与 reducer 输出相同的数据。 这是示例输入: 1500s 1 1960s 1 Aldus 1 在下面
我不明白,我有一个典型的消息源 content.Language 我可以得到它就像 @Autowire protec
我已经为抽屉导航编写了一个运行良好的程序,但最近我尝试为个人资料图片和 TextView 放置一个 ImageView,之后它给了我一个 ClassCastException。 main_activi
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
@Override public void onPause() { super.onPause(); save(notes.itemSelected); } @Override pub
描述 我正在尝试创建一种自定义语言,我想将词法分析器规则与解析器规则分开。此外,我的目标是将词法分析器和解析器规则进一步划分为特定文件(例如,通用词法分析器规则和关键字规则)。 但我似乎无法让它发挥作
我正在尝试使用以下代码为给定的 Runnable 对象创建代理: public class WorkInvocationHandler implements InvocationHandler {
我有两个非常简单的类,一个扩展了另一个: public class LocationType implements Parcelable { protected int locid =
我遇到了 ClassCastException :Cannot cast my.package.classA to my.package.classA.请注意,(规范)类(名称)是相同的。 我知道这应
我有一个代码试图将一个函数包装在另一个执行动态类型检查的函数中: class Base class Foo extends Base class Bar extends Base object Mai
我使用hadoop 0.18.3遇到以下错误 java.lang.ClassCastException:org.apache.hadoop.io.Text无法转换为org.apache.hadoop.
在 org.dozer.BeanFactory.createBean(Object, Class, String) 的实现中我尝试将对象转换为它的类型。如果我部署所有 bundle ,即关闭并启动所有
我有这个代码: package Maven_test.Maven_project_test; public class Test { class A { int i = 10;
我一直在尝试对 Wicket 的 WebSession 进行子类化,以便可以实现基本的身份验证系统。我已遵循 Wicket 引用库中的指南。当我在网页中尝试以下操作时,出现 ClassCastExce
我正在构建一个 kotlin AAR 库,我需要在发布之前对其进行混淆。我有以下结构: package com.example.token interface TokenManager { s
Kotlin 引入了 here 中描述的声明站点差异. 在某些情况下,泛型参数的 out/in 关键字可能会导致 ClassCastException。我的程序如下所示。 fun main(args:
我正在 AnyLogic 中进行基于代理的传染病流行模拟。我的模型中有两种代理类型 - 人员和建筑物。我正在尝试编写一个函数来计算代理类型“人员”在任何给定时间点所具有的传染性接触数量。下面是我的函数
我有一个 EditContact 类。打开后,它会显示哪些复选框已选中或未选中。这是通过我的适配器中的一些代码完成的,它可以正常工作: //This is for EditContact, t
这个问题已经有答案了: 奥 git _a (2 个回答) 已关闭 5 年前。 我正在获取 ClassCastException 。这两个类来自不同的 jar,但是JettyContinuationPr
我想在 Java 中使用一组对,但是当我调用 contains() 来查看它是否已包含特定对时,我总是会得到 ClassCastException >。有没有办法避免这种行为? 它的实例化如下: pr
我是一名优秀的程序员,十分优秀!