我是靠谱客的博主 有魅力酸奶,最近开发中收集的这篇文章主要介绍Salesforce支持三种Deployment方式 之 ANT,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Salesforce支持三种Deployment方式

1. Outbound change set

2. Eclipse plug in 

3. ANT 

本文介绍使用ANT的基本步骤.

<1> Preparation

1. Ant installed 
2. JAVA installed
3. SVN and Subversion installed<Optional>
4. Cygwin or MKS<Optional>
5. JAVA SVN Env Variales added to your computer
6. salesforce-ant.jar in the root folder for the ant installation
7. 7-Zip installed<Zip static resources to UNIX format, Optional>


<2> Steps


1. Create build.properties file:

-----------------------------------------------------------------------------------------
# build.properties
#
# Specify the login credentials for the desired Salesforce organization
sf.username = xxxxx
sf.password =xxxxxx..................................

# Use 'https://www.salesforce.com' for production or developer edition (the default if not specified).
# Use 'https://test.salesforce.com for sandbox.
sf.serverurl = https://www.salesforce.com

# If your network requires an HTTP proxy, see http://ant.apache.org/manual/proxy.html for configuration.
#

-----------------------------------------------------------------------------------------

2. Create package.xml file:

-----------------------------------------------------------------------------------------

?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
        <members>*</members>
        <name>ApexClass</name>
    </types>
    <types>
        <members>*</members>
        <name>ApexTrigger</name>
    </types>    
    <version>23.0</version>
</Package>
-----------------------------------------------------------------------------------------


<3> More information can be found about the base level ant preparation in the standard Salesforce documentation:
http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_deploying_ant.htm                         
http://www.salesforce.com/us/developer/docs/daas/salesforce_migration_guide.pdf                             


最后

以上就是有魅力酸奶为你收集整理的Salesforce支持三种Deployment方式 之 ANT的全部内容,希望文章能够帮你解决Salesforce支持三种Deployment方式 之 ANT所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部