關(guān)于Spring配置方面的一點(diǎn)心得(io.spring.platform)

關(guān)于Spring配置方面的一點(diǎn)心得(io.spring.platform)

最近在配置Maven項(xiàng)目,也就是使用io.spring.platform來(lái)進(jìn)行管理自己的Spring項(xiàng)目的各種依賴,但是后來(lái)的配置過(guò)程中發(fā)現(xiàn)不簡(jiǎn)單,因?yàn)閯傞_始我是使用

<dependencyManagement>

<dependencies>

<dependency>

<groupId>io.spring.platform</groupId>

<artifactId>platform-bom</artifactId>

<version>Cairo-SR7</version>

<type>pom</type>

<scope>import</scope>

</dependency>

</dependencies>

</dependencyManagement>


但是后來(lái)總是在啟動(dòng)項(xiàng)那里發(fā)現(xiàn),不是少這個(gè)方法就是少那個(gè)方法,列舉其中的一個(gè)錯(cuò)誤:springboot項(xiàng)目啟動(dòng)報(bào)錯(cuò)Attribute 'proxyBeanMethods' in annotation [org.springframework.

后來(lái)在一些小伙伴的討論中,發(fā)現(xiàn)有可能是版本的問(wèn)題,因?yàn)樵诓煌姹究赡軙?huì)有一些方法不存在或者過(guò)時(shí)廢棄的情況出現(xiàn),導(dǎo)致在索引依賴的時(shí)候出現(xiàn)找不到方法的情況。

那個(gè)提出問(wèn)題的小伙伴最后解決了,他是將2.1.4.RELEASE升級(jí)為2.2.0.RELEASE? 這個(gè)回答啟發(fā)了我,于是我去搜索Cairo-SR7版本的io.spring.platform對(duì)應(yīng)的springBoot版本,結(jié)果它對(duì)應(yīng)的是2.0.8.RELEASE,在官方的文檔中發(fā)現(xiàn)它已經(jīng)排在最后,原來(lái)這個(gè)io.spring.platform已經(jīng)終止研發(fā)了,官方?jīng)Q定使用spring-boot-starter來(lái)進(jìn)行包管理

https://spring.io/projects/platform

End of Life

The Platform will reach the end of its supported life on 9 April 2019. Maintenence releases of both the Brussels and Cairo lines will continue to be published up until that time. Users of the Platform are encourage to start using Spring Boot’s dependency management directory, either by using spring-boot-starter-parent as their Maven project’s parent, or by importing the spring-boot-dependencies bom.

翻譯:

壽命終止該平臺(tái)將于2019年4月9日終止其受支持的壽命。Brussels和 Cairo生產(chǎn)線的維護(hù)版本將繼續(xù)發(fā)布,直到那時(shí)為止。 鼓勵(lì)平臺(tái)用戶開始使用Spring Boot的依賴項(xiàng)管理目錄,方法是將spring-boot-starter-parent用作其Maven項(xiàng)目的父級(jí),或者導(dǎo)入spring-boot-dependencies bom。

于是我開始觀看我們一般的spring項(xiàng)目的包依賴的方式,比如:


<modelVersion>4.0.0</modelVersion>

<parent>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-parent</artifactId>

<version>2.2.2.RELEASE</version>

<relativePath/><!-- lookup parent from repository -->

</parent>

<groupId>life.majiang.community</groupId>

<artifactId>community</artifactId>

<version>0.0.1-SNAPSHOT</version>

<name>community</name>

<description>Spring Boot community</description>

但是在我使用該方式之后出現(xiàn)了,全部依賴無(wú)法找到的情況,我猜測(cè)可能一個(gè)項(xiàng)目的包管理的方式可能只有一個(gè),我有兩個(gè),可能會(huì)出現(xiàn)混亂,于是我還是在<dependencyManagement>的標(biāo)簽下面添加spring-boot的依賴管理:


<dependencyManagement>

<dependencies>

<dependency>

<groupId>org.springframework.cloud</groupId>

<artifactId>spring-cloud-dependencies</artifactId>

<version>Hoxton.SR1</version>

<type>pom</type>

<scope>import</scope>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-dependencies</artifactId>

<version>2.2.2.RELEASE</version>

<type>pom</type>

<scope>import</scope>

</dependency>

</dependencies>

</dependencyManagement>

于是build成功,可以運(yùn)行。

但是你在打開右邊欄的Maven 的時(shí)候你會(huì)發(fā)現(xiàn),你的部分依賴會(huì)報(bào) unknow,也就是找不到的錯(cuò)誤,這個(gè)其實(shí)是一種思維定勢(shì),在之前io.spring.platform管理的springboot 1.X時(shí)代的確不用管理這些依賴,只要寫上依賴的名字,然后io.spring.platform會(huì)自動(dòng)配置版本來(lái)達(dá)到兼容,但是現(xiàn)在不是用這個(gè)方式之后,顯然這種方式已經(jīng)不在適用了,對(duì)于一些依賴你要明確它的版本,有些則可以不寫,可以參考我下面的pom.xml內(nèi)容:

<?xmlversion="1.0" encoding="UTF-8"?>

<projectxmlns="http://maven.apache.org/POM/4.0.0"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<parent>

<artifactId>imooc-security</artifactId>

<groupId>com.imooc.security</groupId>

<version>1.0.0-SNAPSHOT</version>

</parent>

<modelVersion>4.0.0</modelVersion>

?

<artifactId>imooc-security-core</artifactId>

<packaging>jar</packaging>

?

<dependencies>

<dependency>

<groupId>org.springframework.cloud</groupId>

<artifactId>spring-cloud-starter-oauth2</artifactId>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-data-redis</artifactId>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-jdbc</artifactId>

</dependency>

<dependency>

<groupId>mysql</groupId>

<artifactId>mysql-connector-java</artifactId>

<version>5.1.30</version>

</dependency>

<dependency>

<groupId>org.springframework.social</groupId>

<artifactId>spring-social-config</artifactId>

<version>1.1.6.RELEASE</version>

</dependency>

<dependency>

<groupId>org.springframework.social</groupId>

<artifactId>spring-social-core</artifactId>

<version>1.1.6.RELEASE</version>

</dependency>

<dependency>

<groupId>org.springframework.social</groupId>

<artifactId>spring-social-security</artifactId>

<version>1.1.6.RELEASE</version>

</dependency>

<dependency>

<groupId>org.springframework.social</groupId>

<artifactId>spring-social-web</artifactId>

<version>1.1.6.RELEASE</version>

</dependency>

<dependency>

<groupId>commons-lang</groupId>

<artifactId>commons-lang</artifactId>

<version>2.6</version>

</dependency>

<dependency>

<groupId>commons-collections</groupId>

<artifactId>commons-collections</artifactId>

<version>3.2.2</version>

</dependency>

<dependency>

<groupId>commons-beanutils</groupId>

<artifactId>commons-beanutils</artifactId>

<version>1.9.3</version>

</dependency>

<dependency>

<groupId>org.projectlombok</groupId>

<artifactId>lombok</artifactId>

<version>1.18.6</version>

<scope>provided</scope>

</dependency>

</dependencies>

?

</project>

這樣IDEA就會(huì)自動(dòng)下載相應(yīng)的依賴,于是就可以了。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 228,156評(píng)論 6 531
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 98,401評(píng)論 3 415
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人,你說(shuō)我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 176,069評(píng)論 0 373
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我,道長(zhǎng),這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 62,873評(píng)論 1 309
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 71,635評(píng)論 6 408
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 55,128評(píng)論 1 323
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,203評(píng)論 3 441
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 42,365評(píng)論 0 288
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 48,881評(píng)論 1 334
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 40,733評(píng)論 3 354
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 42,935評(píng)論 1 369
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,475評(píng)論 5 358
  • 正文 年R本政府宣布,位于F島的核電站,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 44,172評(píng)論 3 347
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 34,582評(píng)論 0 26
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 35,821評(píng)論 1 282
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 51,595評(píng)論 3 390
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 47,908評(píng)論 2 372

推薦閱讀更多精彩內(nèi)容