- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直无法让我的 SCR 插件正常工作。我已经尽可能多地搜索,只找到与我需要使用的结构不相似的示例。下面是 POM 的片段。这些几乎是 CQ 项目原型(prototype)生成的默认值。所有依赖项都在那里,所以可能不是这样。这是构建的输出:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building project Bundle 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ project-bundle ---
[INFO] Deleting C:\project-path\target
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ bundle ---
[debug] execute contextualize
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory C:\project-path\src\main\resources
[INFO]
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ project-bundle ---
[WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent!
[INFO] Compiling 4 source files to C:\project-path\target\classes
[INFO]
[INFO] --- maven-scr-plugin:1.7.4:scr (generate-scr-descriptor) @ project-bundle ---
[INFO]
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ project-bundle ---
[debug] execute contextualize
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory C:\project-path\src\test\resources
[INFO]
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ project-bundle ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:9c6abc2:test (default-test) @ project-bundle ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-bundle-plugin:2.3.6:bundle (default-bundle) @ project-bundle ---
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ project-bundle ---
[INFO] Installing C:\project-path\target\project-bundle-1.0-SNAPSHOT.jar to C:\user-path\.m2\repository\com\project\cq\project-bundle\1.0-SNAPSHOT\project-bundle-1.0-SNAPSHOT.jar
[INFO] Installing C:\project-path\pom.xml to C:\user-path\.m2\repository\com\project\cq\project-bundle\1.0-SNAPSHOT\project-bundle-1.0-SNAPSHOT.pom
[INFO]
[INFO] --- maven-bundle-plugin:2.3.6:install (default-install) @ project-bundle ---
[INFO] Installing com/project/cq/project-bundle/1.0-SNAPSHOT/project-bundle-1.0-SNAPSHOT.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4.189s
[INFO] Finished at: Wed Apr 17 10:29:17 CDT 2013
[INFO] Final Memory: 15M/221M
[INFO] ------------------------------------------------------------------------
[INFO] --- maven-scr-plugin:1.7.4:scr (generate-scr-descriptor) @ project-bundle ---
.即使类上存在注释,它似乎也没有生成任何东西。
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>1.7.4</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- use version 2.3.2 to have java 1.5 as the default -->
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
<version>2.3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.sling</groupId>
<artifactId>maven-sling-plugin</artifactId>
<version>2.0.6</version>
</plugin>
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<version>0.0.13</version>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the
Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<versionRange>[1.7.4,)</versionRange>
<goals>
<goal>scr</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<id>generate-scr-descriptor</id>
<goals>
<goal>scr</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>project.project-bundle</Bundle-SymbolicName>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.sling</groupId>
<artifactId>maven-sling-plugin</artifactId>
<configuration>
<slingUrl>http://${crx.host}:${crx.port}/apps/project/install</slingUrl>
<usePut>true</usePut>
</configuration>
</plugin>
</plugins>
</build>
package com.project.cq.examples.dictionaryservice.impl;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Properties;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import org.osgi.service.component.ComponentContext;
import com.project.cq.examples.dictionaryservice.DictionaryService;
@Component(immediate = true, metatype = true, label = "Service Implementation", description = "The implementation for the Service")
@Service
public class DictionaryServiceServletImpl implements DictionaryService {
@Property(label = "Words", description = "The list of words.")
private static final String PROP_WORDS = "words";
// The set of words
private String[] words;
private boolean active;
private boolean modified;
@Override
public boolean checkWord(String word) {
word = word.toLowerCase();
// This is very inefficient
for (int i = 0; i < words.length; i++) {
if (words[i].equals(word)) {
return false;
}
}
return true;
}
protected void activate(ComponentContext context) {
active = true;
dictionary = (String[]) context.getProperties().get(
PROP_WORDS);
}
protected void deactivate(ComponentContext context) {
dictionary = null;
active = false;
}
protected void modified(ComponentContext context) {
modified = true;
dictionary = (String[]) context.getProperties().get(
PROP_WORDS);
}
}
最佳答案
我猜你正在使用 <packaging>bundle</packaging>
,如果是这样,我通过使用 org.apache.felix.scr.annotations @ 1.7.0 将 maven-scr-plugin 升级到 1.9.0 来完成这项工作
我在这里放了一个工作版本的压缩包:https://dl.dropboxusercontent.com/u/2465717/com.stackoverflow.osgi.scr.tgz
注意:您可以启用 Eclipse m2e 生命周期映射 - 它运行良好(Juno SR2),在正常的问题控制台中生成 SCR 组件错误。更改action <ignore/>
到:
<action>
<execute>
<runOnIncremental>true</runOnIncremental>
<runOnConfiguration>true</runOnConfiguration>
</execute>
</action>
关于Maven SCR 插件 - 不生成 OSGI-INF 文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16064687/
开始使用 AEM 项目。现在我正在尝试在本地启动项目并在构建过程中遇到下一个错误(stacktrace cut): [ERROR] Failed to execute goal org.apache.
我正在执行一项任务,但收到一个错误:scr.sh:3:语法错误:Word意外(预期为“)”)。当我尝试在我的本地计算机服务器上运行我的shell脚本时,它可以工作,但在Helios ssh服务器上它返
我正在执行一项任务,但收到一个错误:scr.sh:3:语法错误:Word意外(预期为“)”)。当我尝试在我的本地计算机服务器上运行我的shell脚本时,它可以工作,但在Helios ssh服务器上它返
OSGi Enterprise 第 5 版规范引入了 osgi.extender命名空间。此命名空间使假定框架中安装了诸如蓝图或声明性服务之类的扩展程序的包能够使用 Require-Capabilit
我在 OSGI felix 平台中使用 SCR 框架在我的组件中注入(inject)服务引用。这很好用,除了可选的依赖项。因此,如果我有两个组件 Foo 和 Bar,其中 Foo 如下所示: @Com
我在我的项目中使用 scr 注释。有人能解释一下 @Component 注释中元类型属性的用例吗? import org.apache.felix.scr.annotations.Activate;
我正在使用 JCard sim,java 卡版本 2.2.2,我想知道 .scr 文件如何与 .java 文件相关联。 (NetBeans IDE 上的 Java 卡模拟器。我没有使用实际的智能卡)。
给定other questions在同一主题上,我觉得我理解连接 的明显理由。标记为 ' 出现后对标记犹豫不决。 javascript 字符串中的标记,鉴于连接的文本甚至不代表 ,我看不到在这里这样
我正在替换我不熟悉的代码中一些已弃用的 Javadoc 注释。大多数 javadoc 注释很容易翻译为 org.apache.felix.scr.annotations,但我不确定如何翻译这个: /*
这个问题在这里已经有了答案: cannot load to (4 个答案) 关闭 9 年前。
我正在研究 Camel-Scr,并在 pom.xml 中看到了 camel-scr Camel :: SCR (deprecated) Camel with OSGi SCR (Declarat
我对组件激活时调用哪个函数激活函数或绑定(bind)函数的顺序感到困惑。在我看来,激活函数函数将首先被调用,因为 Bind 函数用于绑定(bind)服务。但正如我们所知,所有目标服务都首先进入组件上下
我正在开发一个公开服务的 OSGi 应用程序(带有 felix scr 注释)。服务通过传递字符串值向外部 api 注册。 listener.addSchemaChangeListener(new C
这question提示我发布后续问题。在 Maven 构建期间,空目录不会从 src/main/webapp 复制,即使我已将 pom.xml 设置为包含空目录: org.apache.mave
我花了一些时间试验和研究 OSGi enRoute 站点。 Quick Start , 和 Base教程真的很好。现在,作为学习练习,我将按照这些教程中的原则创建自己的示例。 我决定重现 StageS
我在我的应用程序中使用 Apache Felix 声明式服务,我正在寻找一份备忘单,其中描述了可以为 @Reference 注释提供的参数。我曾经看到一个网页,其中包含关于它的非常有用的备忘单(或表格
我正在用 C#.Net 创建一个程序,其中一个功能允许用户从列表中选择屏幕保护程序并预览或配置它。经过一些研究后,我发现通过使用“/c”参数调用 *.scr 文件将显示配置对话框。 从命令行使用此参数
我对这两个用于启动配置的文件感到很困惑。他们似乎在做同样的事情,我不明白为什么我需要 or 。 如果我使用uEnv.txt,我将它设置为 bootargs=console=ttyS0,115200 r
我一直无法让我的 SCR 插件正常工作。我已经尽可能多地搜索,只找到与我需要使用的结构不相似的示例。下面是 POM 的片段。这些几乎是 CQ 项目原型(prototype)生成的默认值。所有依赖项都在
我会尽力尽可能清楚地解释我的问题。我第一次尝试在我的 Laravel 项目中使用 angularJs。 Controller 只是从数据库中获取上传的照片 public function index(
我是一名优秀的程序员,十分优秀!