您好,登錄后才能下訂單哦!
近期工作中要對很多項目加相同的依賴,需要將很多項目都從svn導出,感覺一個個導太慢了,由于不會寫腳本就從晚上找到svn拉代碼的程序,稍作修改很快就拉完了所有代碼。直接上必要代碼
必要pom
<dependency> <groupId>org.tmatesoft.svnkit</groupId> <artifactId>svnkit</artifactId> <version>1.10.1</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.8</version> </dependency>
必要代碼
@Slf4j public class SvnService { private SVNClientManager clientManager; public void checkOut(final SvnConfig config) { final String user = config.getSourceSvnUser(); final String password = config.getSourceSvnPassword(); final String sourceSvn = config.getSourceSvn() + config.getSourceProject(); try { //初始化支持svn://協議的庫。 必須先執行此操作。 SVNRepositoryFactoryImpl.setup(); //相關變量賦值 SVNURL repositoryURL = SVNURL.parseURIEncoded(sourceSvn); ISVNOptions options = SVNWCUtil.createDefaultOptions(true); //實例化客戶端管理類 this.clientManager = SVNClientManager.newInstance( (DefaultSVNOptions) options, user, password); //要把版本庫的內容check out到的目錄 File wcDir = new File(config.getSourceCheckOutDir()); //通過客戶端管理類獲得updateClient類的實例。 SVNUpdateClient updateClient = this.clientManager.getUpdateClient(); // sets externals not to be ignored during the checkout updateClient.setIgnoreExternals(false); //執行check out操作,返回工作副本的版本號。 long workingVersion = updateClient.doCheckout( repositoryURL, wcDir, SVNRevision.HEAD, SVNRevision.HEAD, SVNDepth.INFINITY, false); log.info("VERSION:{} check out to {}", workingVersion, wcDir); } catch (Exception e) { log.error("SvnService.doCheckOut error: ", e); } } public void update(final SvnConfig config) { final String user = config.getSourceSvnUser(); final String password = config.getSourceSvnPassword(); final String sourceSvn = config.getSourceSvn() + config.getSourceProject(); try { //初始化支持svn://協議的庫。 必須先執行此操作。 SVNRepositoryFactoryImpl.setup(); //相關變量賦值 SVNURL.parseURIEncoded(sourceSvn); ISVNOptions options = SVNWCUtil.createDefaultOptions(true); //實例化客戶端管理類 this.clientManager = SVNClientManager.newInstance( (DefaultSVNOptions) options, user, password); //要更新的文件 File updateFile = new File(config.getSourceCheckOutDir()); //獲得updateClient的實例 SVNUpdateClient updateClient = this.clientManager.getUpdateClient(); updateClient.setIgnoreExternals(false); //執行更新操作 long versionNum = updateClient.doUpdate(updateFile, SVNRevision.HEAD, SVNDepth.INFINITY, false, false); log.info("updated version is {}", versionNum); } catch (Exception e) { log.info(e.getMessage() + "{}", e); } } public void commit(final SvnConfig config) { final String user = config.getSourceSvnUser(); final String password = config.getSourceSvnPassword(); final String sourceSvn = config.getSourceSvn() + config.getSourceProject(); try { //初始化支持svn://協議的庫。 必須先執行此操作。 SVNRepositoryFactoryImpl.setup(); //相關變量賦值 SVNURL.parseURIEncoded(sourceSvn); ISVNOptions options = SVNWCUtil.createDefaultOptions(true); //實例化客戶端管理類 this.clientManager = SVNClientManager.newInstance( (DefaultSVNOptions) options, user, password); //要提交的文件 File commitFile = new File(config.getSourceCheckOutDir()); //獲取此文件的狀態(是文件做了修改還是新添加的文件?) SVNStatus status = this.clientManager.getStatusClient().doStatus(commitFile, true); //如果此文件是新增加的則先把此文件添加到版本庫,然后提交。 if (status.getContentsStatus() == SVNStatusType.STATUS_UNVERSIONED) { //把此文件增加到版本庫中 this.clientManager.getWCClient().doAdd(commitFile, false, false, false, SVNDepth.INFINITY, false, false); //提交此文件 this.clientManager.getCommitClient().doCommit( new File[]{commitFile}, true, "", null, null, true, false, SVNDepth.INFINITY); System.out.println("add"); } //如果此文件不是新增加的,直接提交。 else { this.clientManager.getCommitClient().doCommit( new File[]{commitFile}, true, "", null, null, true, false, SVNDepth.INFINITY); System.out.println("commit"); } System.out.println(status.getContentsStatus()); } catch (Exception e) { log.error(e.getMessage() + "{}", e); } } }
其余代碼
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。