SSISO Community

시소당

eclipse에서 디플로이한 걸 weblogic으로 돌릴때

ant를 이용한 디플로잉이므로..

 

 

build.xml에서 deploy의 카피 디렉토리 변경해야만...

 

 <property name="weblogic81.domain.home" value="C:/bea/user_projects/domains/mydomain" />
 <property name="weblogic81.deploy.dir" value="${weblogic81.domain.home}/applications" />

 

...............

 

 

  <target name="deploy" depends="undeploy,init" >
    <!-- Create the distribution directory -->
    <delete file="${war}.war"/>
 <jar jarfile="${war}.war" basedir="${dist}"/>   
 <copy todir="${weblogic81.deploy.dir}">
  <fileset dir="${dist}">
   <include name="${ear}" />
  </fileset>
 </copy>
   <delete file="${war}.war"/>
    <!-- Create the distribution directory -->
   <delete dir="${dist}"/>

  </target>

  

1487 view

4.0 stars