gpt4 book ai didi

java - 使用 Java 蓝图服务定义

转载 作者:行者123 更新时间:2023-12-01 09:36:51 26 4
gpt4 key购买 nike

我无法获得在本地使用服务的正确蓝图。 OSGi 服务器 (karaf) 显示 GracePeriod,并最终在 ILookupMfgService 上等待超时。

如果我删除引用线, bundle 将启动并具有可用的 ILookupMfgService

对我做错了什么有什么建议吗?

感谢您对我学习的帮助!

蒂莫西

<blueprint default-activation="eager" xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jpa="http://aries.apache.org/xmlns/jpa/v1.0.0" xmlns:tx="http://aries.apache.org/xmlns/transactions/v1.0.0" xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"

xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0
http://www.w3.org/2001/XMLSchema-instance http://www.w3.org/2001/XMLSchema-instance
http://aries.apache.org/xmlns/jpa/v1.0.0 http://aries.apache.org/xmlns/jpa/v1.0.0
http://aries.apache.org/xmlns/transactions/v1.0.0 http://aries.apache.org/xmlns/transactions/v1.0.0
http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0 http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0 ">

<!-- implemenation of the service -->
<bean id="lookupMfgServiceStubImpl" class="com.services.jpa.LookupMfgServiceStub" scope="singleton"
init-method="init" />

<!-- create a service with the implementation -->
<service id="lookupMfgServiceStubLocal" ref="lookupMfgServiceStubImpl" interface="com.services.ILookupMfgService" />

<!-- create a reference for injecting into another bean - this line causes the GracePeriod / timeout -->
<reference id="lookupMfgServiceStubRef" interface="com.services.ILookupMfgService" availability="mandatory" ctivation="eager" />

<bean id="EntityImpl" class="com.services.jpa.Entity" scope="singleton" init-method="init">
<!-- use the service - won't work without the reference above being valid -->
<property name="lookupMfg" ref="lookupMfgServiceRef" />
</bean>
</blueprint>

没有引用线

karaf@root()> services -p 123

com.server.services (123) provides:
----------------------------------------
objectClass = [com.services.ILookupMfgService]
osgi.service.blueprint.compname = lookupMfgServiceStubImpl
service.id = 932
----

最佳答案

您不得声明对同一蓝图/ bundle 中公开的服务的强制引用。容器会感到困惑,因为它想要启动一个服务,并引用一个尚不存在的服务(他自己),这会导致不可恢复的 GracePeriod。

引用的粗略比喻是从另一个包中导入Java。服务类比为公共(public)类。如果您想使用不同包中的类,则需要导入(=引用)。

在您的示例中,您不需要引用,因为您在 bundle 中。您可以直接引用您声明的 Bean:

<!-- implemenation of the service -->
<bean id="lookupMfgServiceStubImpl" class="com.services.jpa.LookupMfgServiceStub" scope="singleton"
init-method="init" />

<!-- create a service with the implementation -->
<service id="lookupMfgServiceStubLocal" ref="lookupMfgServiceStubImpl" interface="com.services.ILookupMfgService" />

<bean id="EntityImpl" class="com.services.jpa.Entity" scope="singleton" init-method="init">
<!-- use the service - won't work without the reference above being valid -->
<property name="lookupMfg" ref="lookupMfgServiceStubImpl" />
</bean>

附:如果没有其他包需要您的 LookupMfgService,那么您甚至可以省略服务声明。

关于java - 使用 Java 蓝图服务定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38818652/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com