【第十篇】- Maven 引入外部依賴之Spring Cloud直播商城 b2b2c電子商務技術總結

JIAN2發表於2021-09-07

Maven 引入外部依賴

如果我們需要引入第三方庫檔案到專案,該怎麼操作呢?

pom.xml 的 dependencies 列表列出了我們的專案需要構建的所有外部依賴項。

要新增依賴項,我們一般是先在 src 資料夾下新增 lib 資料夾,然後將你工程需要的 jar 檔案複製到 lib 資料夾下。我們使用的是 ldapjdk.jar ,它是為 LDAP 操作的一個幫助庫:

【第十篇】- Maven 引入外部依賴之Spring Cloud直播商城 b2b2c電子商務技術總結

然後新增以下依賴到 pom.xml 檔案中:

< dependencies >     <!-- 在這裡新增你的依賴 -->     < dependency >         < groupId > ldapjdk </ groupId >   <!-- 庫名稱,也可以自定義 -->         < artifactId > ldapjdk </ artifactId >     <!-- 庫名稱,也可以自定義 -->         < version > 1.0 </ version > <!-- 版本號 -->         < scope > system </ scope > <!-- 作用域 -->         < systemPath > ${basedir}\src\lib\ldapjdk.jar </ systemPath > <!-- 專案根目錄下的lib資料夾下 -->     </ dependency > </ dependencies >

pom.xml 檔案完整程式碼如下:

< project xmlns = " "   xmlns:xsi = " "   xsi:schemaLocation = "   " >   < modelVersion > 4.0.0 </ modelVersion >   < groupId > com.companyname.bank </ groupId >   < artifactId > consumerBanking </ artifactId >   < packaging > jar </ packaging >   < version > 1.0-SNAPSHOT </ version >   < name > consumerBanking </ name >   < url > </ url >   < dependencies >       < dependency >         < groupId > junit </ groupId >         < artifactId > junit </ artifactId >         < version > 3.8.1 </ version >         < scope > test </ scope >       </ dependency >       < dependency >         < groupId > ldapjdk </ groupId >         < artifactId > ldapjdk </ artifactId >         < scope > system </ scope >         < version > 1.0 </ version >         < systemPath > ${basedir}\src\lib\ldapjdk.jar </ systemPath >       </ dependency >   </ dependencies > </ project >


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70006413/viewspace-2790898/,如需轉載,請註明出處,否則將追究法律責任。

相關文章