我在我的应用程序中使用独立的码头服务器。我想对 jar 进行热部署。当我通过网络浏览时,我在 jetty.xml 中找到了以下设置
<Call name="addLifeCycle">
<Arg>
<New class="org.mortbay.jetty.deployer.ContextDeployer">
<Set name="contexts"><Ref id="Contexts"/></Set>
<Set name="configurationDir"><SystemProperty name="jetty.home" default="."/>/contexts</Set>
<Set name="scanInterval">1</Set>
</New>
</Arg>
</Call>
The ContextDeployer will scan the configurationDir directory at intervals of scanInterval seconds for xml descriptors that define contexts.
就我而言,我必须对 jar 进行热部署。使用上面的配置,我如何指定 jar 文件的热部署。指定它将查找上下文文件中的更改。那么要重新部署,我们是否需要更改上下文文件?请帮助我理解。