Saturday, July 25, 2009

Add FastSwap on Weblogic server using Eclipse

Enterprise Application Deployment Descriptor Elements
http://edocs.bea.com/wls/docs103/programming/app_xml.html

Using FastSwap Deployment to Minimize Redeployment
http://edocs.bea.com/wls/docs103/deployment/deployunits.html#FastSwap

Oracle Enterprise pack detailed tutorial
http://www.oracle.com/technology/products/enterprise-pack-for-eclipse/demos.html

Setting FastSwap in Eclipse


weblogic-application.xml
<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-application xmlns:wls="http://www.bea.com/ns/weblogic/weblogic-application" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/javaee_5.xsd http://www.bea.com/ns/weblogic/weblogic-application http://www.bea.com/ns/weblogic/weblogic-application/1.0/weblogic-application.xsd">
<!-- server-version: 10.3.0 -->
<wls:application-param>
<wls:param-name>webapp.encoding.default</wls:param-name>
<wls:param-value>UTF-8</wls:param-value>
</wls:application-param>
<wls:fast-swap>
<wls:enabled>true</wls:enabled>
</wls:fast-swap>

</wls:weblogic-application>

1 comment: