2012-08-31 2 views
2

가져 오기 패키지 예외가 발생했습니다. 이는 menifist 파일을 사용하여 해결했습니다. 하지만 지금은 다른 생각이 들지만, 나는 간단한 번들을 배포 할 수 있지만이 번들은 픽업 디렉토리에서 처녀 서버에서 실행되지 않습니다.파일의 이슈 ID를 확인할 수 없습니다.

서버 로그를 첨부했는데 오류가 발생했습니다.

앞으로 연락 주시기를 바랍니다.

[2012-08-30 22:43:43.250] fs-watcher     <DE0014I> Uninstalled bundle 'tasknodebundle' version '0.0.0'. 
[2012-08-30 22:44:56.453] fs-watcher     <HD0001I> Hot deployer processing 'CREATED' event for file 'tasknodebundle.jar'. 
[2012-08-30 22:44:56.468] fs-watcher     <DE0701E> Cannot determine the artifact identity of the file 'C:\VIRGO-~1.REL\pickup\tasknodebundle.jar'. 
[2012-08-30 22:44:56.484] fs-watcher     <HD0002E> Hot deploy failed for file 'tasknodebundle.jar'. org.eclipse.virgo.kernel.deployer.core.DeploymentException: Cannot determine the artifact identity of the file 'C:\VIRGO-~1.REL\pickup\tasknodebundle.jar': uri='file:/C:/VIRGO-~1.REL/pickup/tasknodebundle.jar': uri='file:/C:/VIRGO-~1.REL/pickup/tasknodebundle.jar' 
     at org.eclipse.virgo.kernel.deployer.core.internal.PipelinedApplicationDeployer.doInstall(PipelinedApplicationDeployer.java:167) 
     at org.eclipse.virgo.kernel.deployer.core.internal.PipelinedApplicationDeployer.install(PipelinedApplicationDeployer.java:139) 
     at org.eclipse.virgo.kernel.deployer.core.internal.PipelinedApplicationDeployer.deploy(PipelinedApplicationDeployer.java:252) 
     at org.eclipse.virgo.kernel.deployer.hot.HotDeploymentFileSystemListener.deploy(HotDeployerFileSystemListener.java:163) 
     at org.eclipse.virgo.kernel.deployer.hot.HotDeploymentFileSystemListener.onChange(HotDeployerFileSystemListener.java:67) 
     at org.eclipse.virgo.util.io.FileSystemChecker.notifyListeners(FileSystemChecker.java:245) 
     at org.eclipse.virgo.util.io.FileSystemChecker.check(FileSystemChecker.java:166) 
     at org.eclipse.virgo.kernel.deployer.hot.WatchTask.run(WatchTask.java:48) 
     at java.lang.Thread.run(Thread.java:662) 
Caused by: org.eclipse.virgo.kernel.deployer.core.DeploymentException: Cannot determine the artifact identity of the file 'C:\VIRGO-~1.REL\pickup\tasknodebundle.jar': uri='file:/C:/VIRGO-~1.REL/pickup/tasknodebundle.jar' 
     at org.eclipse.virgo.kernel.deployer.core.internal.PipelinedApplicationDeployer.determineIdentity(PipelinedApplicationDeployer.java:209) 
     at org.eclipse.virgo.kernel.deployer.core.internal.PipelinedApplicationDeployer.doInstall(PipelinedApplicationDeployer.java:159) 
     ... 8 common frames omitted 
Caused by: org.eclipse.virgo.kernel.deployer.core.DeploymentException: Cannot determine the artifact identity of the file 'C:\VIRGO-~1.REL\pickup\tasknodebundle.jar' 
     at org.eclipse.virgo.kernel.deployer.core.internal.PipelinedApplicationDeployer.determineIdentity(PipelinedApplicationDeployer.java:348) 
     at org.eclipse.virgo.kernel.deployer.core.internal.PipelinedApplicationDeployer.determineIdentity(PipelinedApplicationDeployer.java:207) 
     ... 9 common frames omitted 

menifest 파일

Manifest-Version: 1.0 
Bundle-ManifestVersion: 2 
Bundle-Name: task-node-bundle 
Bundle-SymbolicName: task-node-bundle 
Bundle-Version: 1.0.0.qualifier 
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 
Export-Package: com.ccl.aws.swf.nodes 
Bundle-Vendor: Test user 
Import-Package: com.ccl.aws.swf.nodes; version="0.0.0", 
com.ccl.aws.swf.nodes.util; version="0.0.0", 
com.amazonaws.services.ec2; version="1.3.14", 
com.amazonaws.services.s3; version="1.3.14", 
com.amazonaws.services.sns; version="1.3.14", 
com.amazonaws.services.sqs; version="1.3.14", 
com.amazonaws.auth; version="1.3.14" 

답변

0

당신은 매니페스트 파일을 게시 할 수 있습니까? 문제가 있다고 생각합니다. 매니 페스트 파일의 파일 형식은 까다 롭고 공간, 백 슬래시 또는 너무 길어서 너무 작아서 엉망이 될 수 있습니다.

+0

ManifestVersion : 1.0 번들-ManifestVersion : 2 번들-이름 : 작업 노드 - 번들 번들 - SymbolicName : 작업 노드 - 번들 번들 - 버전 : 1.0.0.qualifier 번들-RequiredExecutionEnvironment : JavaSE -1.6 내보내기 패키지 : com.ccl.aws.swf.nodes 번들 공급 업체 : Waqas Sadiq 가져 오기 - 패키지 : com.ccl.aws.swf.nodes; version = "0.0.0", com.ccl.aws.swf.nodes.util; version = "0.0.0", com.amazonaws.services.ec2; 버전 = "1.3.14", com.amazonaws.services.s3; 버전 = "1.3.14", com.amazonaws.services.sns; 버전 = "1.3.14", com.amazonaws.services.sqs; 버전 = "1.3.14", com.amazonaws.auth; 버전 = "1.3.14" – vicky

관련 문제