我正在做我的camunda从7.4 (Wildfly)到7.5 (Wildfly 10)的迁移,使用迁移工具作为链接:https://docs.jboss.org/author/display/CMTOOL/WildFly+8+to+10,并根据这个链接更正一些配置:在下面的评论中发布,url_1。
一切完成后,我可以启动服务,没有错误,但当我打开网址--> post在下面的评论,url_2,我得到了错误404,但当我访问下面的评论,url_3中的post时,我可以正常访问野蝇页面。
我在server.log中检查了一下,没有关于这个404的日志,但是我做了比较,发现它没有加载其中的一个.war文件夹( .server/wildfly-10.0.0.Final/standalone/deployments路径下的.war文件夹,请看下面的日志文件:你可以看到/deployments/下的所有文件都被加载了,除了camunda-welcome.war文件夹。
07:50:41,050 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 31) WFLYJCA0005: Deploying non-JDBC-compliant driver class org.postgresql.Driver (version 9.4)
07:50:41,051 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-1) WFLYJCA0018: Started Driver service with driver-name = postgresql
07:50:41,070 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 52) WFLYUT0014: Creating file handler for path '/camunda/jboss_7.5/deploy-package/./server/wildfly-10.0.0.Final/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]']
07:50:41,079 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0012: Started server default-server.
07:50:41,082 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0018: Host default-host starting
07:50:41,324 INFO [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0006: Undertow HTTP listener default listening on 0.0.0.0:8080
07:50:41,389 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-1) WFLYDS0013: Started FileSystemDeploymentService for directory /camunda/jboss_7.5/deploy-package/./server/wildfly-10.0.0.Final/standalone/deployments
07:50:41,423 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) WFLYSRV0027: Starting deployment of "camunda-example-invoice-7.5.1-ee.war" (runtime-name: "camunda-example-invoice-7.5.1-ee.war")
07:50:41,438 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "camunda-webapp-ee-jboss-7.5.1-ee.war" (runtime-name: "camunda-webapp-ee-jboss-7.5.1-ee.war")
07:50:41,449 INFO [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "camunda-h2-webapp-7.5.1-ee.war" (runtime-name: "camunda-h2-webapp-7.5.1-ee.war")
07:50:41,459 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) WFLYSRV0027: Starting deployment of "camunda-engine-rest-7.5.1-ee.war" (runtime-name: "camunda-engine-rest-7.5.1-ee.war")
07:50:41,620 INFO [org.jboss.ws.common.management] (MSC service thread 1-2) JBWS022052: Starting JBossWS 5.1.3.Final (Apache CXF 3.1.4)
07:50:41,807 INFO [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-2) ISPN000128: Infinispan version: Infinispan 'Mahou' 8.1.0.Final
07:50:41,959 INFO [org.camunda.bpm.container.impl.jboss.deployment.processor.ProcessApplicationProcessor] (MSC service thread 1-1) Detected user-provided @ProcessApplication component with name 'org.camunda.bpm.example.invoice.InvoiceProcessApplication'.
07:50:42,048 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) WFLYJCA0001: Bound data source [java:jboss/datasources/ProcessEngine]
07:50:42,048 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS]
07:50:42,048 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) WFLYJCA0001: Bound data source [java:/mydatabaseDS]提前感谢你们的热情支持:)。
苏曼娜W。
发布于 2016-07-05 15:49:06
更新::
我可以从7.4版迁移到7.5.0版(7.5.2在我迁移之前就会出现上述问题)..我已经向卡蒙达团队公开了这个问题..
仍然可以在这里发表任何评论。:)
苏曼娜W。
发布于 2016-07-06 16:57:33
添加更新..我确实向camunda打开了案例,要解决上面的问题,您只需在.server/wildfly-10.0.0.Final/standalone/deployments下创建一个名为“camunda-欢迎.war.dodeploy”的空文件,然后重新启动服务。它将推送camunda服务,以滚动camunda-欢迎.war.deployed..现在,站点已按预期加载:)。
https://stackoverflow.com/questions/38049779
复制相似问题