1

由于示例很旧并且无法正常工作,我该如何使用equinox Weavingbndtoolsequinox Weaving

更新:

尝试运行 Hello world 的编织示例时

我有两个捆绑包:

public class HelloService  implements BundleActivator {

    public void start(final BundleContext context) throws Exception {
        System.out.println("Hello world!");
    }



    public void stop(final BundleContext context) throws Exception {
        System.out.println("Good bye world!");
    }
}

bnd.bnd

-buildpath:  \
osgi.core,\
osgi.cmpn,\
biz.aQute.bnd.annotation,\
${junit}
Bundle-Version: 0.0.0.${tstamp}
Require-Bundle: helloaspect
Export-Package:  \
com.weaving.hellohistorytest
Bundle-Activator: com.weaving.hellohistorytest.HelloService

方面捆绑:

@Component
@Aspect
public class HelloAspect  {

/**
 * Replaces the "Hello world!" output with "Hi from HelloAspect ;-)".
 */
@Before("execution(* HelloService+.*(..))")
public void advice() {
   System.out.println("hello aspect");
}
}

bnd.bnd

-buildpath:  \
osgi.core,\
osgi.cmpn,\
biz.aQute.bnd.annotation,\
${junit},\
aspectjrt-1.7.3,\
aspectjweaver,\
org.eclipse.equinox.supplement
Bundle-Version: 0.0.0.${tstamp}
Service-Component:  \
    *
Export-Package:  \
com.weaving.helloaspect;aspects="HelloAspect"

Eclipse-SupplementBundle: com.weaving.hellohistorytest

启动.bndrun

runbundles:  \
org.apache.felix.gogo.runtime,\
org.apache.felix.gogo.shell,\
org.apache.felix.gogo.command,\
org.eclipse.equinox.weaving.aspectj,\
org.eclipse.equinox.weaving.hook,\
aspectjweaver,\
aspectjrt-1.7.3,\
osgi.cmpn,\
osgi.core,\
cnf.run.equinox.common,\
org.apache.felix.framework,\
osgi.enterprise,\
org.eclipse.equinox.supplement,\
    helloaspect;version=latest,\
hellohistorytest;version=latest,\

-runproperties:\
osgi.framework.extensions=org.eclipse.equinox.weaving.hook


 -runrequires:\
 osgi.identity;filter:='(osgi.identity=org.apache.felix.gogo.shell)',\
 osgi.identity;filter:='(osgi.identity=org.apache.felix.gogo.command)'

-runvm: -Dosgi.framework.extensions=org.eclipse.equinox.weaving.hook,\
-Daj.weaving.verbose=true,\
-Dorg.aspectj.weaver.showWeaveInfo=true,\
-Dorg.aspectj.osgi.verbose=true

当我运行启动时:我也得到 Hello world not hello aspect,Aspect Weaving Hooks Plug-in (Incubation) 设置为 Resolved

问题是什么?

4

1 回答 1

1

可以在GitHub 上找到一个工作源代码示例

通常,此处的说明也适用于 bndtools。

添加所需的捆绑包

-runbundles: \
  org.eclipse.equinox.weaving.aspectj,\
  org.aspectj.runtime,\
  org.aspectj.weaver

确保 org.eclipse.equinox.weaving.hook 位于同一位置

-runpath: org.eclipse.equinox.weaving.hook

您需要在 *.bndrun 中提供以下运行属性

-runproperties:\
   osgi.framework.extensions=org.eclipse.equinox.weaving.hook

以下运行时属性可选择用于调试。请注意,即使它们正常工作,输出也会始终进入 std.err 流)。

aj.weaving.verbose=true,\
org.aspectj.weaver.showWeaveInfo=true,\
org.aspectj.osgi.verbose=true,\
于 2015-05-13T09:56:08.540 回答