我正在使用此命令来重新部署Tomcat(8.5)上的现有应用程序:
2
从日志来看,一切似乎都很好:
AFRAME.registerComponent("marker-controller", {
tick: function() {
if ( document.querySelector("#marker1").object3D && document.querySelector("#marker1").object3D.visible == true ) {
// code when marker1 is visible
.
.
.
}else if ( document.querySelector("#markerN").object3D && document.querySelector("#markerN").object3D.visible == true ) {
// code when markerN is visible, this is repeated 10 times
.
.
.
} else {
// here I know that no marker is visible
}
}
});
我正在使用虚拟主机:
curl --upload-file app.war "http://jenkins:pass@host:8080/manager/text/deploy?path=&war=app&update=true"
conf / Catalina / host.com / ROOT.xml包含:
OK - Application déployée pour le chemin de contexte [/]
“ update = true”首先应取消部署我的应用程序,但此步骤未完成。我的战争以ROOT.war的形式上传到appbase文件夹,但包含war内容的ROOT文件夹未更新。
如果我使用undeploy,那么deploy命令将部署并更新所有内容。
我缺少什么使更新参数起作用? 谢谢!