2012-12-05 59 views
2

我遇到了一些不可重複的行爲。maven-pax-provision + equinox:java.lang.Long不能轉換爲java.lang.String

我正在開發一個OSGi應用程序,使用maven-bundle-plugin和maven-pax-plugin在Apache Felix和Eclipse Equinox中運行它。

由於今天我有時遇到以下錯誤,當我嘗試啓動或停止一個包,例如

磅正常工作

輸出(節選):

0|Active  | 0|OSGi System Bundle (3.8.1.v20120830-144521) 
1|Active  | 1|Console plug-in (1.0.0.v20120522-1841) 
2|Active  | 1|Apache Felix Gogo Command (0.12.0) 
3|Active  | 1|Apache Felix Gogo Runtime (0.10.0) 
4|Active  | 1|Apache Felix Gogo Shell (0.10.0) 
5|Active  | 5|OSGi R4 Core Bundle (4.1.0) 
6|Active  | 5|slf4j-api (1.6.6) 
7|Active  | 5|Logback Core Module (1.0.7) 
8|Active  | 5|Logback Classic Module (1.0.7) 

但是當我嘗試站6例如我得到以下異常:

g! stop 6 
java.lang.ClassCastException: java.lang.Long cannot be cast to java.lang.String 
at org.eclipse.equinox.console.commands.EquinoxCommandsConverter.convert(EquinoxCommandsConverter.java:61) 
at org.apache.felix.gogo.runtime.CommandProcessorImpl.convert(CommandProcessorImpl.java:254) 
at org.apache.felix.gogo.runtime.CommandSessionImpl.convert(CommandSessionImpl.java:374) 
at org.apache.felix.gogo.runtime.Reflective.coerce(Reflective.java:389) 
at org.apache.felix.gogo.runtime.Reflective.coerce(Reflective.java:310) 
at org.apache.felix.gogo.runtime.Reflective.invoke(Reflective.java:110) 
at org.apache.felix.gogo.runtime.CommandProxy.execute(CommandProxy.java:82) 
at org.apache.felix.gogo.runtime.Closure.executeCmd(Closure.java:477) 
at org.apache.felix.gogo.runtime.Closure.executeStatement(Closure.java:403) 
at org.apache.felix.gogo.runtime.Pipe.run(Pipe.java:108) 
at org.apache.felix.gogo.runtime.Closure.execute(Closure.java:183) 
at org.apache.felix.gogo.runtime.Closure.execute(Closure.java:120) 
at org.apache.felix.gogo.runtime.CommandSessionImpl.execute(CommandSessionImpl.java:89) 
at org.apache.felix.gogo.shell.Console.run(Console.java:62) 
at org.apache.felix.gogo.shell.Shell.console(Shell.java:203) 
at org.apache.felix.gogo.shell.Shell.gosh(Shell.java:128) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
at java.lang.reflect.Method.invoke(Method.java:601) 
at org.apache.felix.gogo.runtime.Reflective.invoke(Reflective.java:137) 
at org.apache.felix.gogo.runtime.CommandProxy.execute(CommandProxy.java:82) 
at org.apache.felix.gogo.runtime.Closure.executeCmd(Closure.java:477) 
at org.apache.felix.gogo.runtime.Closure.executeStatement(Closure.java:403) 
at org.apache.felix.gogo.runtime.Pipe.run(Pipe.java:108) 
at org.apache.felix.gogo.runtime.Closure.execute(Closure.java:183) 
at org.apache.felix.gogo.runtime.Closure.execute(Closure.java:120) 
at org.apache.felix.gogo.runtime.CommandSessionImpl.execute(CommandSessionImpl.java:89) 
at org.apache.felix.gogo.shell.Activator.run(Activator.java:75) 
at java.lang.Thread.run(Thread.java:722) 

這種情況與每包 一切都很好,費利克斯堅韌。

什麼想法?

回答

3

這是Equinox命令包內的錯誤。它無法正確轉換類型。 gogo運行時打印printStackTrace並通過felix命令正確執行命令。

+0

感謝您的info.Is有任何解決方法或什麼? – hueck

+1

嘗試停止equinox命令捆綁。 –

相關問題