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

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

最近在配置Maven項目,也就是使用io.spring.platform來進行管理自己的Spring項目的各種依賴萧福,但是后來的配置過程中發(fā)現(xià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>


但是后來總是在啟動項那里發(fā)現(xiàn)锦亦,不是少這個方法就是少那個方法步氏,列舉其中的一個錯誤:springboot項目啟動報錯Attribute 'proxyBeanMethods' in annotation [org.springframework.

后來在一些小伙伴的討論中说墨,發(fā)現(xiàn)有可能是版本的問題,因為在不同版本可能會有一些方法不存在或者過時廢棄的情況出現(xiàn)眠副,導致在索引依賴的時候出現(xiàn)找不到方法的情況。

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

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.

翻譯:

壽命終止該平臺將于2019年4月9日終止其受支持的壽命岛宦。Brussels和 Cairo生產(chǎn)線的維護版本將繼續(xù)發(fā)布台丛,直到那時為止件已。 鼓勵平臺用戶開始使用Spring Boot的依賴項管理目錄个绍,方法是將spring-boot-starter-parent用作其Maven項目的父級,或者導入spring-boot-dependencies bom所意。

于是我開始觀看我們一般的spring項目的包依賴的方式变汪,比如:


<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)了侠坎,全部依賴無法找到的情況,我猜測可能一個項目的包管理的方式可能只有一個裙盾,我有兩個实胸,可能會出現(xiàn)混亂,于是我還是在<dependencyManagement>的標簽下面添加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成功番官,可以運行庐完。

但是你在打開右邊欄的Maven 的時候你會發(fā)現(xiàn),你的部分依賴會報 unknow徘熔,也就是找不到的錯誤假褪,這個其實是一種思維定勢,在之前io.spring.platform管理的springboot 1.X時代的確不用管理這些依賴近顷,只要寫上依賴的名字生音,然后io.spring.platform會自動配置版本來達到兼容,但是現(xiàn)在不是用這個方式之后窒升,顯然這種方式已經(jīng)不在適用了缀遍,對于一些依賴你要明確它的版本,有些則可以不寫饱须,可以參考我下面的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就會自動下載相應的依賴域醇,于是就可以了。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市譬挚,隨后出現(xiàn)的幾起案子锅铅,更是在濱河造成了極大的恐慌,老刑警劉巖减宣,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件盐须,死亡現(xiàn)場離奇詭異,居然都是意外死亡漆腌,警方通過查閱死者的電腦和手機贼邓,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來闷尿,“玉大人塑径,你說我怎么就攤上這事√罹撸” “怎么了统舀?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長劳景。 經(jīng)常有香客問我誉简,道長,這世上最難降的妖魔是什么枢泰? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任描融,我火速辦了婚禮铝噩,結(jié)果婚禮上衡蚂,老公的妹妹穿的比我還像新娘。我一直安慰自己骏庸,他們只是感情好毛甲,可當我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著具被,像睡著了一般玻募。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上一姿,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天七咧,我揣著相機與錄音,去河邊找鬼叮叹。 笑死艾栋,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的蛉顽。 我是一名探鬼主播蝗砾,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了悼粮?” 一聲冷哼從身側(cè)響起闲勺,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎扣猫,沒想到半個月后菜循,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡苞笨,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年债朵,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片瀑凝。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡序芦,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出粤咪,到底是詐尸還是另有隱情谚中,我是刑警寧澤,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布寥枝,位于F島的核電站宪塔,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏囊拜。R本人自食惡果不足惜某筐,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望冠跷。 院中可真熱鬧南誊,春花似錦、人聲如沸蜜托。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽橄务。三九已至幔托,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間蜂挪,已是汗流浹背重挑。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留棠涮,地道東北人谬哀。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像故爵,于是被迫代替她去往敵國和親玻粪。 傳聞我的和親對象是個殘疾皇子隅津,可洞房花燭夜當晚...
    茶點故事閱讀 43,724評論 2 351

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