- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以在 felix 的 war bundle 中使用 spring?我在 glassfish 3.1 上使用 spring 3.0.5 和 felix
我尝试输入component-scan
在 felix 中的 OSGI war 包内标记,我得到以下异常。
我看到一个similar bug已经解决了Equinox,那么felix呢?是否有解决此问题的解决方法或解决方案?
P.S:如果我在 web.xml contextConfigLocation
中使用 * 定义路径,则会引发相同的异常, 例如:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:META-INF/spring/*.xml</param-value>
</context-param>
2012-02-08 18:30:23,194 [pool-28-thread-1] (PathMatchingResourcePatternResolver.java:532) WARN - Cannot search for matching files underneath URL [bundle://275.0:2/examples/services/] because it does not correspond to a directory in the file system
java.io.FileNotFoundException: URL [bundle://275.0:2/examples/services/] cannot be resolved to absolute file path because it does not reside in the file system: bundle://275.0:2/examples/services/
at org.springframework.util.ResourceUtils.getFile(Res ourceUtils.java:204)
at org.springframework.core.io.AbstractFileResolvingR esource.getFile(AbstractFileResolvingResource.java :52)
at org.springframework.core.io.UrlResource.getFile(Ur lResource.java:168)
at org.springframework.core.io.support.PathMatchingRe sourcePatternResolver.doFindPathMatchingFileResour ces(PathMatchingResourcePatternResolver.java:528)
...
2012-02-08 18:30:23,194 [pool-28-thread-1] (PathMatchingResourcePatternResolver.java:353) DEBUG - Resolved location pattern [classpath*:examples/services/**/*.class] to resources []
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx">
<context:annotation-config/>
<tx:annotation-driven />
<context:component-scan base-package="examples.services" />
</beans>
最佳答案
我发现有两种解决方法可以解决它。我仍然很高兴听到 felix 的真正解决方案。
解决方法是:
public static URL resolve(URL url) throws IOException
String path = url.getPath();
String str;
if(path.contains("com")){
str = path.substring(path.indexOf("com"));
}
return new URL("file:\\c:\\temp_classes\\"+str);
关于Spring + Felix war = FileNotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9215544/
我是 OSGi 的新手,开始使用 felix。我目前非常精通捆绑包、服务等的概念。我有一个要求,可以将 Felix 嵌入到 Tomcat 中,我尝试使用谷歌搜索,但无法找到适合我的目的的相关解决方案。
如果我检测到我在开发环境中运行,我想自动调用 Karaf“dev:watch”命令。我考虑过将 dev:watch * 直接添加到 etc/shell.init.script 但我不希望它无条件运行。
我有一个捆绑组件, package ipojo; import ipojo.service.Hello; import org.apache.felix.ipojo.annotations.Compo
我使用 apache felix,我想连接 osgi 框架并控制它 - 特别是停止。换句话说,我有应用程序 A(基于 osgi)和应用程序 B。我希望从 B 连接到正在运行的 A 并停止 osgi。我
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: Find the dependent bundles in Eclipse at runtime 如何从更新的 bu
是否可以在 felix 的 war bundle 中使用 spring?我在 glassfish 3.1 上使用 spring 3.0.5 和 felix 我尝试输入component-scan在 f
有没有关于如何配置/安装 Apache Felix File install 的示例?在官网上,已经提到你需要配置属性等。但是他们没有提到你需要把这些配置属性放在哪里,如何设置等等。 我已下载 org
我正在为我的 OSGi 项目使用 Felix Framework,但我遇到了有关第三方依赖项的严重问题。 我正在使用 eclipse 和 maven-bundle-plugin 从源生成我的包,并从
我已经下载了org.apache.felix.main.distribution-4.2.1。它正在工作。 现在我想使用org.apache.felix.fileinstall-3.2.6.jar。我
在基于依赖管理器的组件模型中,我试图将组件的所有样板文件隐藏到基类中。我在 eclipse+bndtools 中连接了所有东西,并且可以成功地将 @Init、@Start、@Stop 推送到我的基类中
我在我的项目中使用 scr 注释。有人能解释一下 @Component 注释中元类型属性的用例吗? import org.apache.felix.scr.annotations.Activate;
我有一些应用程序,使用了 Felix OSGi Framework。 更新后如何查看 bundle ? 即我有很多 bundle ,并且所有 bundle 都已加载。我可以更新包目录中的一些包。我如何
我正在开发 Apache Sling WCMS 应用程序。我需要过滤发送到服务器的所有请求并在响应对象中设置一些 header 。我根据 Felix Http Filter Sample 实现了过滤器
我使用 Felix 作为嵌入式应用程序,如下所述, How to start and use Apache Felix from code? 。我想要做的是通过 OSGi 从我的主机应用程序动态加载
无法将包加载到 felix 中。我下载了Felix 6.0.1,运行使用 > java -jar bin/felix.jar ____________________________ Welcome
我有一个包含许多 bundle 的应用程序。事实证明,我需要使用来自可能的 bundle 的导入,并且我从 Maven 收到警告, bundle 依赖项中的三个是循环。 The projects in
我希望使用 Apache Felix 进行一些开发,我很好奇我应该使用什么 Linux 发行版。据我所知,它在 Ubuntu 上受支持,这是一个好的起点吗?或者它甚至重要吗? 最佳答案 这并不重要,因
我使用 Apache Felix 和 Glassfish 工作了几个月。我可以创建简单的 Web 应用程序。现在我必须创建基于 OSGI 架构的 Java 守护进程。是否有任何带有示例代码的好教程可以
Felix有哪些包我需要开始吗? downloads page 上有无数个. (附注:与 OSGI 的“Oscar”引用框架相比,这个名称是对 Odd Couple + 的引用吗?这是我在阅读其中一个
我无法从代码中找到有关开始和使用Apache Felix的信息。 我想用 Apache Felix 的 Shell 做我能够(或不能 ;))的事情。 例如,我如何启动一个模块? 请帮忙。 最佳答案 因
我是一名优秀的程序员,十分优秀!