简体   繁体   English

将Java应用程序从Jboss eap-6.3迁移到Wildfly 9

[英]Migrating Java application from Jboss eap-6.3 to Wildfly 9

I'm trying to transfer application that runs on a server Jboss eap-6.3 on the server Wildfly 9. 我正在尝试转移在服务器Wildfly 9上的服务器Jboss eap-6.3上运行的应用程序。

The standalone log 独立日志

{
    "WFLYCTL0080: Failed services" => {
        "jboss.deployment.subunit.\"calculator-jee-1.00.00.ear\".\"calculator-ws-1.00.00.jar\".INSTALL" => "org.jboss.msc.service.StartException in service jboss.deployment.subunit.\"calculator-jee-1.00.00.ear\".\"calculator-ws-1.00.00.jar\".INSTALL: WFLYSRV0153: Failed to process phase INSTALL of subdeployment \"calculator-ws-1.00.00.jar\" of deployment \"calculator-jee-1.00.00.ear\"
    Caused by: java.lang.NoClassDefFoundError: org/apache/ws/commons/schema/XmlSchemaAllMember",
    "WFLYCTL0180: Services with missing/unavailable dependencies" => [
        "jboss.naming.context.java.comp.\"calculator-jee-1.00.00\".\"calculator-ws-1.00.00\".WServicesServerDAOImpl.Validator is missing [jboss.naming.context.java.comp.\"calculator-jee-1.00.00\".\"calculator-ws-1.00.00\".WServicesServerDAOImpl]",
        "jboss.naming.context.java.comp.\"calculator-jee-1.00.00\".\"calculator-ws-1.00.00\".WServicesServerDAOImpl.InstanceName is missing [jboss.naming.context.java.comp.\"calculator-jee-1.00.00\".\"calculator-ws-1.00.00\".WServicesServerDAOImpl]",
        "jboss.deployment.unit.\"calculator-jee-1.00.00.ear\".WeldStartService is missing [jboss.deployment.subunit.\"calculator-jee-1.00.00.ear\".\"calculator-ws-1.00.00.jar\".jndiDependencyService]",
        "jboss.deployment.subunit.\"calculator-jee-1.00.00.ear\".\"calculator-ws-1.00.00.jar\".weld.weldClassIntrospector is missing [jboss.deployment.subunit.\"calculator-jee-1.00.00.ear\".\"calculator-ws-1.00.00.jar\".beanmanager]",
        "jboss.deployment.unit.\"calculator-jee-1.00.00.ear\".deploymentCompleteService is missing [jboss.deployment.subunit.\"calculator-jee-1.00.00.ear\".\"calculator-ws-1.00.00.jar\".deploymentCompleteService]",
        "jboss.naming.context.java.comp.\"calculator-jee-1.00.00\".\"calculator-ws-1.00.00\".WServicesServerDAOImpl.InAppClientContainer is missing [jboss.naming.context.java.comp.\"calculator-jee-1.00.00\".\"calculator-ws-1.00.00\".WServicesServerDAOImpl]",
        "jboss.deployment.subunit.\"calculator-jee-1.00.00.ear\".\"calculator-ws-1.00.00.jar\".batch.environment is missing [jboss.deployment.subunit.\"calculator-jee-1.00.00.ear\".\"calculator-ws-1.00.00.jar\".beanmanager]",
        "jboss.naming.context.java.comp.\"calculator-jee-1.00.00\".\"calculator-ws-1.00.00\".WServicesServerDAOImpl.ValidatorFactory is missing [jboss.naming.context.java.comp.\"calculator-jee-1.00.00\".\"calculator-ws-1.00.00\".WServicesServerDAOImpl]"
    ]
}

Can somebody help me? 有人可以帮我吗? I am newbie to the JBoss and Wildfly environment 我是JBoss和Wildfly环境的新手

Seems that your application requires the org.apache.ws.commons.schema.XmlSchemaAllMember class which is included into the latest xmlschema-core. 似乎您的应用程序需要org.apache.ws.commons.schema.XmlSchemaAllMember类,该类包含在最新的xmlschema-core中。 You can add a dependency to your application. 您可以向您的应用程序添加依赖项。 Good luck. 祝好运。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM