`
Fly_m
  • 浏览: 260143 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

OSGI中启动spring dm加载的commons-logging问题

    博客分类:
  • osgi
阅读更多

    在进行osgi学习的过程中,首先就是启动一个用springdm编写的hello world程序,当加入了相应的spring包时,启动osgi,其中会报一个错误,即找不到org.apache.commons.logging的依赖包。

    错误如下:

Reason: Missing Constraint: Import-Package: org.apache.commons.logging; version="[1.1.1,2.0.0)"

    经过仔细的对比和设置,最终发现需要加入以下的4个包,才能使spring-core启动起来(这四个包均位于spring dm2.0包的lib目录下):

com.springsource.slf4j.org.apache.commons.logging-1.5.6.jar
com.springsource.slf4j.api-1.5.6.jar
com.springsource.slf4j.log4j-1.5.6.jar
com.springsource.org.apache.log4j-1.2.15.jar

 

    实际上,spring-core只需要使用commons.logging包,但在这里的commons-logging包又依赖于slf4j.api包,然后alf4j.api启动slf4j.log4j,最后由log4j实现包来实现日志的记录。

    详细查看相应的import和export可以发现其中的依赖关系详细如下:

org.springframework.core-3.0.0.RC1.jar->import:org.apache.commons.logging;version="[1.1.1, 2.0.0)"
com.springsource.slf4j.org.apache.commons.logging-1.5.6.jar->org.slf4j;version="[1.5.6, 1.5.6]",org.slf4j.spi;versi
 on="[1.5.6, 1.5.6]"
com.springsource.slf4j.api-1.5.6.jar->org.slf4j.impl;version="[1.5.6, 2.0.0)"
com.springsource.slf4j.log4j-1.5.6.jar->org.apache.log4j;version="[1.2.15, 2.0.0)"
com.springsource.org.apache.log4j-1.2.15.jar

 

    在其中,com.springsource.slf4j.log4j-1.5.6.jar并不是一个独立的bundle包,而是依附于com.springsource.slf4j.api-1.5.6.jar启动,这个可以由其中的Fragment-Host: com.springsource.slf4j.api;bundle-version="[1.5.6, 1.5.6]"可以得出。

    值得注意的是,在这里,sprng-core中指定了相应的logging包的版本为[1.1.1,2.0.0),所以,随便导入一个logging是不行的,并且相应的log4j也要遵循相应的版本要求。

    在使用了maven之后,我们的commons-logging可以从maven中进行导出,但是官方的commons-logging-1.1.1并没有osgi化,即在其中的manifest.mf文件并没有相应的bundle设置。我们可以用bnd插件来将它osgi化,即在相应的export-package中指定导出的版本为version="1.1.1"即可。如下:

Export-Package: org.apache.commons.logging;version="1.1.1"

这样就可以不再需要导入slf4j以及log4j包了。

    在intellij idea中,使用了OSGI插件即Osmorc,可以直接在相应的设置中指定bundle的参数,就可以在运行中将commons-loggin转化成bundle包了。如下:

commons-logging bundle设置

    这样,就完成了对commons-logging的使用,值得一提的就是,在pom.xml定义要引用的jar时,如果jar不是osgi-ready的,那么idea会进行提示,太好了。

  • 描述: Intellij idea包中的commons-logging bundle设置
  • 大小: 68.1 KB
分享到:
评论
2 楼 Fly_m 2010-06-08  
没有注意的吧,我是按照书上写的配置的:)
就是解决import package的问题,解决了,它就自然跑起来了:)
然后,书上说spring dm web extender的start level要比一般的高(如修改为5),不知道这个有没用.
1 楼 liuqq 2010-06-02  
代码可以公布一下?

我在使用Spring DM遇到了问题
不论是在META-INF -> spring -> xxx.xml
还是在MANIFEST.MF 里定义 Spring-Context:xxx/xxx.xml
Spring DM的extender始终不起作用
(我使用OSGI DS方式没有问题)

在配置Spring DM 有什么需要注意的地方吗?

-----------------------------------------
Spring 版本是 3.0.0 RELEASE
Spring DM : 2.0.0M1
equinox-SDK-3.5.2
-----------------------------------------

相关推荐

    commons-logging.jar

    commons-logging-osgi-1.0.jar, commons-logging-osgi.jar, commons-logging-REDUCED.jar, commons-logging-tests.jar, commons-logging_1.0.3.jar, commons-logging_1.jar, commons-logging_all-2.0.0.jar, commons...

    commons-collections.jar

    commons-collections-3.2-osgi.jar, commons-collections-3.2-sources.jar, commons-collections-3.2.1.jar, commons-collections-3.2.2-javadoc.jar, commons-collections-3.2.2-src.zip, commons-collections-...

    SpringDM笔记7-开发SpringDM Bundle

    SpringDM(Spring Dynamic Modules)是Spring框架的一个扩展,专门用于OSGi(Open Service Gateway Initiative)环境中的应用程序开发。OSGi是一种Java模块化系统,它允许开发者将应用程序拆分成独立的、可热插拔的...

    SpringDM笔记31-Testing with OSGi and SpringDM

    标题 "SpringDM笔记31-Testing with OSGi and SpringDM" 涉及到的是在OSGi环境中使用SpringDM进行测试的相关知识。OSGi(Open Service Gateway Initiative)是一种Java模块化系统,允许动态地发现、加载和卸载服务。...

    commons-pool.jar

    commons-pool-1.1.jar, commons-pool-1.2.jar, commons-pool-1.3-src.jar...commons-pool-osgi-1.3.0.jar, commons-pool.jar, commons-pool2-2.4.2-javadoc.jar, commons-pool2-2.4.2-src.zip, commons-pool2-2.4.2.jar

    OSGi与Spring:Spring DM开发

    Spring DM框架依赖于Apache Commons Logging来处理日志记录。如果需要自定义日志配置或者解决特定的日志问题,开发者还需要关注Apache Commons Logging的配置和使用方法。 #### 四、总结 通过上述步骤,开发者可以...

    osgi-resource-locator-1.0.1-API文档-中英对照版.zip

    赠送jar包:osgi-resource-locator-1.0.1.jar; 赠送原API文档:osgi-resource-locator-1.0.1-javadoc.jar; 赠送源代码:osgi-resource-locator-1.0.1-sources.jar; 赠送Maven依赖信息文件:osgi-resource-locator...

    spring-osgi-1.2.1-with-dependencies.zip

    spring-osgi-1.2.1-with-dependencies.zip spring-osgi-1.2.1-with-dependencies.zip spring-osgi-1.2.1-with-dependencies.zip

    commons-dbcp

    commons-dbcp-1.3-javadoc.jar, commons-dbcp-1.3-RC1.jar, ...commons-dbcp-osgi-1.2.2.jar, commons-dbcp.jar, commons-dbcp2-2.1.1-javadoc.jar, commons-dbcp2-2.1.1-src.zip, commons-dbcp2-2.1.1.jar

    osgi-resource-locator-1.0.1-API文档-中文版.zip

    赠送jar包:osgi-resource-locator-1.0.1.jar; 赠送原API文档:osgi-resource-locator-1.0.1-javadoc.jar; 赠送源代码:osgi-resource-locator-1.0.1-sources.jar; 赠送Maven依赖信息文件:osgi-resource-locator...

    spring-osgi-1.2.0-rc1-with-dependencies.zip

    "spring-osgi-1.2.0-rc1"是Spring OSGi的一个早期版本,"RC1"代表Release Candidate 1,意味着这是正式发布前的最后一个测试版本。在这个版本中,开发者可以期待一些新特性和改进,但同时也可能存在一些未发现的...

    spring-osgi-1.2.1-with-dependencies

    总结来说,“spring-osgi-1.2.1-with-dependencies”是一个集成了Spring与OSGi的完整包,它提供了在OSGi环境中运行Spring应用所需的所有组件和服务。通过理解和掌握这个包,开发者可以更好地利用OSGi的模块化优势,...

    org.everit.osgi.bundles.commons-dbcp-1.4-v20140203.zip

    标题中的"org.everit.osgi.bundles.commons-dbcp-1.4-v20140203.zip"是一个开源项目,它包含了Apache Commons DBCP的OSGi封装版本,适用于2014年2月3日的1.4版。Apache Commons DBCP(Database Connection Pool)是...

    SpringDM笔记6-Fragment及配置Log4j Fragment Bundle

    在本文中,我们将深入探讨Spring DM(现在称为Spring OSGi)中的Fragment Bundle以及如何配置Log4j在Fragment Bundle中的应用。Spring DM是Spring框架在OSGi(Open Service Gateway Initiative)环境下的扩展,它...

    spring-dm-osgi整合jar包

    2. Spring DM库:如`spring-osgi-core`, `spring-osgi-io`, `spring-osgi-extender`等,提供了与OSGi环境交互的接口和工具。 3. OSGi框架库:如`org.eclipse.osgi`,这是实现OSGi规范的实现,例如Equinox或Felix。 4...

    osgi-SpringDM

    Spring-DM指的是 Spring ...Spring-DM 的主要目的是能够方便地将 Spring 框架和OSGi框架结合在一起,使得使用Spring的应用程序可以方便简单地部署在OSGi环境中,利用OSGi框架提供的服务,将应用变得 更加模块化。

    spring-osgi-1.2.0-with-dependencies.zip

    spring-osgi-1.2.0-with-dependencies.zip spring-osgi-1.2.0-with-dependencies.zip spring-osgi-1.2.0-with-dependencies.zip

    SpringDM笔记28-Spring And OSGi:Layers of Integration

    标题中的"SpringDM笔记28-Spring And OSGi:Layers of Integration"表明这是一篇关于Spring框架与OSGi(Open Service Gateway Initiative)集成的详细笔记。OSGi是一种模块化系统,它允许Java应用程序以模块化的方式...

    httpcomponents-httpclient-4.5.8-bin-src.zip

    Http协议使用封装jar包(commons-codec-1.3.jar、commons-httpclient...httpclient-osgi-4.5.8.jar; httpclient-win-4.5.8.jar; httpcore-4.4.11.jar; httpmime-4.5.8.jar; jna-4.5.2.jar; jna-platform-4.5.2.jar

    SpringDM笔记13-OSGi服务注册与引用

    在SpringDM(Spring Dynamic Modules)框架中,OSGi(Open Service Gateway Initiative)服务注册与引用是核心功能之一,它使得模块化系统中的组件能够互相发现并交互。本篇笔记将探讨如何在OSGi环境中注册服务以及...

Global site tag (gtag.js) - Google Analytics