2012-10-29 7 views
0

tomcat 6.0.14 애플리케이션 서버에서 원격 배포를 수행하는 라이브 자습서 또는 단계를 찾고 있습니다. Ant 스크립트를 통해 수동으로 배포되는 스프링 2 기반 웹 응용 프로그램이 이미 있습니다. 자동화하고 싶습니다. 내 Windows 데스크톱 PC에서 원격 배포, 원격 시작 및 Tomcat 6.0.14 서버 (Windows VM에서 실행)의 원격 중지를 수행하려면 어떻게해야합니까?tomcat 6.0.14 서버의 원격 배포

샘플이 유용 할 것입니다.

<target name="tomcat-deploy-war" description="Deploy the App to Tomcat"> 
    <deploy url="${tomcat.manager.url}" 
      username="${tomcat.manager.username}" 
      password="${tomcat.manager.password}" 
      path="${web.context.path}" 
      war="file:${build.destdir}/${web.war.name}.war"/> 
    </target> 

This post는 당신이 필요로하는 모든 정보가 포함

답변

0

이 바람둥이에 원격으로 응용 프로그램을 배포하는 ANT 스크립트입니다.