2014-04-03 54 views
1

我试图让Mojarra 2.2.6(或MyFaces 2.2.2,同样的例外都)在Websphere 8.5中运行并运行。像往常一样,我已经将类加载器设置正确地设置为PARENT_LAST和SINGLE。新的罐子正在成功拾起,但下面的讨厌的异常正在抛出,导致应用程序无法启动。任何帮助表示赞赏,谢谢!Websphere 8.5.5.1 JSF 2.2 @MultipartConfig

An exception occurred while validating an annotation: com.ibm.wsspi.amm.validate.ValidationException: SRVE8016E: The @MultipartConfig annotation can not be applied to the class, javax.faces.webapp.FacesServlet, because it extends the wrong super class 

完整的堆栈跟踪

4/3/14 17:21:16:800 EDT] 00000715 annotations E CWWAM0003E: An exception occurred while validating an annotation: com.ibm.wsspi.amm.validate.ValidationException: SRVE8016E: The @MultipartConfig annotation can not be applied to the class, javax.faces.webapp.FacesServlet, because it extends the wrong super class 
          com.ibm.wsspi.amm.validate.ValidationException: SRVE8016E: The @MultipartConfig annotation can not be applied to the class, javax.faces.webapp.FacesServlet, because it extends the wrong super class 
at com.ibm.ws.webcontainer.annotation.validator.MultipartConfigValidator.validateClassAnnotation(MultipartConfigValidator.java:44) 
at com.ibm.ws.webcontainer.annotation.validator.MultipartConfigValidator.validateClassAnnotation(MultipartConfigValidator.java:39) 
at com.ibm.ws.webcontainer.annotation.validator.MultipartConfigValidator.validate(MultipartConfigValidator.java:35) 
at com.ibm.wsspi.amm.merge.AbstractMergeAction.mergeClassTargets(AbstractMergeAction.java:353) 
at com.ibm.wsspi.amm.merge.AbstractMergeAction.merge(AbstractMergeAction.java:123) 
at com.ibm.ws.amm.AnnotativeMetadataManagerImpl.performMergeOperations(AnnotativeMetadataManagerImpl.java:509) 
at com.ibm.ws.amm.AnnotativeMetadataManagerImpl.merge(AnnotativeMetadataManagerImpl.java:274) 
at com.ibm.ws.amm.commonarchive.AnnotationsProcessorImpl.merge(AnnotationsProcessorImpl.java:144) 
at com.ibm.ws.amm.commonarchive.AnnotationsProcessorImpl.merge(AnnotationsProcessorImpl.java:66) 
at org.eclipse.jst.j2ee.commonarchivecore.internal.impl.WARFileImpl.processAnnotations(WARFileImpl.java:923) 
at com.ibm.ws.webfragmerger.WebFragMergerImpl.merge(WebFragMergerImpl.java:493) 
at org.eclipse.jst.j2ee.commonarchivecore.internal.impl.WARFileImpl.mergeAnnotationsAndFragments(WARFileImpl.java:869) 
at org.eclipse.jst.j2ee.commonarchivecore.internal.impl.WARFileImpl.getDeploymentDescriptor(WARFileImpl.java:648) 
at org.eclipse.jst.j2ee.commonarchivecore.internal.impl.WARFileImpl.getDeploymentDescriptor(WARFileImpl.java:367) 
at org.eclipse.jst.j2ee.commonarchivecore.internal.impl.WARFileImpl.getDeploymentDescriptor(WARFileImpl.java:349) 
at com.ibm.ws.websvcs.deploy.PersistentStorageInstallTask.processClientBindings(PersistentStorageInstallTask.java:306) 
at com.ibm.ws.websvcs.deploy.PersistentStorageInstallTask.performTask(PersistentStorageInstallTask.java:168) 
at com.ibm.ws.management.application.SchedulerImpl.run(SchedulerImpl.java:315) 
at java.lang.Thread.run(Thread.java:780) 
+0

可能是http://stackoverflow.com/questions/18544763/websphere-7-with-jsf-2 –

+0

的重复问题升级到2.2与上述场景不同。我相信这与WAS中的OpenWebBeans版本有关。我们将与IBM一起开设PMR。 –

回答

3

我也面临着同样的问题,以WAS 8.0.0.8。我通过从我的web应用程序中删除Mojarra jar(jsf-api & jsf-impl jars)并将它们添加到独立的共享库中来解决了该问题。 另外我需要添加primefaces jar(我使用PF 4.0)也在孤立的共享库中,以使错误消失。

2

的错误

SRVE8016E: The @MultipartConfig annotation can not be applied to the class, javax.faces.webapp.FacesServlet, because it extends the wrong super class 

是一个Websphere Bug,更新到8.5.5.6修复它。