Tomcat和更新的flex services-config.xml

时间:2012-05-14 13:40:12

标签: flex tomcat grails

我需要更新在Tomcat中列出amf通道的flex / services-config.xml,而无需重新启动Tomcat或使用Manager。

这可能吗?是否有一些命令可用于重新加载应用程序而无需重新启动Tomcat。

我正在使用 Tomcat 6

由于

戴夫

1 个答案:

答案 0 :(得分:2)

services-config.xml中,您可以设置自动重新部署时间间隔,以查找配置更改:

<system>
    <redeploy>
        <enabled>true</enabled>
        <!-- Change to fit your requirements -->
        <watch-interval>20</watch-interval>
        <watch-file>{context.root}/WEB-INF/flex/services-config.xml</watch-file>
        <watch-file>{context.root}/WEB-INF/flex/proxy-config.xml</watch-file>
        <watch-file>{context.root}/WEB-INF/flex/remoting-config.xml</watch-file>                       
        <watch-file>{context.root}/WEB-INF/flex/messaging-config.xml</watch-file>                                  
        <watch-file>{context.root}/WEB-INF/flex/data-management-config.xml</watch-file> 
        <touch-file>{context.root}/WEB-INF/web.xml</touch-file>
    </redeploy>
</system>

您必须至少手动重新部署一次才能生效,但