0

JBoss Forge と Switchyard を使い始めたばかりですが、Switchyard ファセットを使用した単純な forge プロジェクトを作成できません。

  • jboss-forge-1.2.2.FINAL を使用します (1.1.3 でも試しました)。
  • 私はプロキシの背後にいるので、 ~/.forge/config.xml ファイルでプロキシを構成しました
  • また、私の .m2/settings.xml ファイルにはプロキシ構成が設定されています。

フォージ構成ファイル:

<configuration>
  <proxy>
    <host>proxyhost</host>
    <port>proxyport</port>
    <!-- The entries below are necessary only if your proxy needs authentication -->
    <username>username</username>
    <password>password</password>
  </proxy>
</configuration>

次に、新しいプロジェクト内に入力すると(詳細な出力が表示されます)

[myproject] myproject$ project install-facet switchyard.bean
***ERROR*** Exception encountered: (type "set VERBOSE false" to disable stack traces)
org.jboss.forge.project.facets.FacetNotFoundException: The requested Facet named [switchyard.bean] could not be found.
    at org.jboss.forge.project.services.FacetFactory.getFacetByName(FacetFactory.java:124)
    at org.jboss.forge.shell.plugins.builtin.project.ProjectPlugin.installFacet(ProjectPlugin.java:107)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.jboss.forge.shell.command.Execution.perform(Execution.java:134)
    at org.jboss.forge.shell.command.fshparser.FSHRuntime.run(FSHRuntime.java:109)
    at org.jboss.forge.shell.command.fshparser.FSHRuntime.run(FSHRuntime.java:47)
    at org.jboss.forge.shell.ShellImpl$ExecutorThread.run(ShellImpl.java:789)
    at org.jboss.forge.shell.ShellImpl.execute(ShellImpl.java:812)
    at org.jboss.forge.shell.ShellImpl.doShell(ShellImpl.java:602)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.jboss.weld.bean.proxy.AbstractBeanInstance.invoke(AbstractBeanInstance.java:48)
    at org.jboss.weld.bean.proxy.ProxyMethodHandler.invoke(ProxyMethodHandler.java:125)
    at org.jboss.forge.shell.ShellImpl$Proxy$_$$_WeldClientProxy.doShell(ShellImpl$Proxy$_$$_WeldClientProxy.java)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.jboss.weld.util.reflection.SecureReflections$13.work(SecureReflections.java:305)
    at org.jboss.weld.util.reflection.SecureReflectionAccess.run(SecureReflectionAccess.java:54)
    at org.jboss.weld.util.reflection.SecureReflectionAccess.runAsInvocation(SecureReflectionAccess.java:163)
    at org.jboss.weld.util.reflection.SecureReflections.invoke(SecureReflections.java:299)
    at org.jboss.weld.introspector.jlr.WeldMethodImpl.invokeOnInstance(WeldMethodImpl.java:188)
    at org.jboss.weld.introspector.ForwardingWeldMethod.invokeOnInstance(ForwardingWeldMethod.java:59)
    at org.jboss.weld.injection.MethodInjectionPoint.invokeOnInstanceWithSpecialValue(MethodInjectionPoint.java:198)
    at org.jboss.weld.event.ObserverMethodImpl.sendEvent(ObserverMethodImpl.java:282)
    at org.jboss.weld.event.ObserverMethodImpl.sendEvent(ObserverMethodImpl.java:265)
    at org.jboss.weld.event.ObserverMethodImpl.notify(ObserverMethodImpl.java:234)
    at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImpl.java:635)
    at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java:622)
    at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java:616)
    at org.jboss.forge.shell.Bootstrap$1.run(Bootstrap.java:172)
    at java.lang.Thread.run(Unknown Source)

何が起こっているかについてのアイデアはありますか?何か不足していますか?

前もって感謝します、

ルベン

4

1 に答える 1

1

SwitchYard Forge ツールは、かなり長い間、古いバージョンの Forge (1.0.2) に関連付けられていました。今後の 1.0 リリースの一環として、Forge バージョンは 1.2.2 にアップグレードされました。どちらのバージョンでも、SwitchYard インストーラーを使用してプラグインを既存の Forget インストールにインストールする必要があります。Forge で SY を本当に使用したい場合は、SY 1.0.0.Final を待つか、1.0.0 のナイトリー ビルドをプルアップします。

余談ですが、1.0 リリースで Forge を試すのを待っている間に、Eclipse ベースのツールを試してみることをお勧めします。そこで利用可能なものを確認したい場合は、SwitchYard ビデオ シリーズのエピソード 6 をチェックしてください: https://community.jboss.org/wiki/SwitchYardVideoSeries

于 2013-04-11T11:57:34.673 に答える