相关文章推荐
悲伤的鸭蛋  ·  antd 里常用的 TypeScript ...·  3 天前    · 
安静的饭盒  ·  Typescript: ...·  19 小时前    · 
玩篮球的跑步机  ·  Common MIME types - ...·  3 天前    · 
力能扛鼎的饼干  ·  module 'torch' has no ...·  3 月前    · 
冷静的灯泡  ·  教你控制 RecyclerView ...·  10 月前    · 
机灵的铁链  ·  20_NumPy数组ndarray和Pyth ...·  1 年前    · 



简介

本文介绍Idea如何根据maven依赖名查找它是哪个pom.xml引入的。

有时候会有这样的问题:我们知道项目里用了某个依赖,想知道它是项目里哪个pom.xml引入的,这样可以进行修改版本、更新依赖等操作。

示例

需求:有个分布式项目,想确定订单微服务(order-core)里使用的feign是哪个pom.xml引入的。

1. Idea安装maven helper插件

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_ide

2.在order-core的pom.xml里查找

打开order-core的pom.xml

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_spring_02

点击“Dependencies Analyzer”(依赖分析器)

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_ide_03

点击“All Dependencies As List”(列表形式显示依赖)

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_intellij-idea_04

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_xml_05


搜索“feign”,点击“feign-core",在右侧可以看到依赖结构,发现最顶层依赖是”spring-cloud-starter-openfeign“。

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_spring_06

点击“spring-cloud-starter-openfeign”

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_maven_07

可以看到,本pom.xml(order-core)、account-api、storage-api都引入了 “spring-cloud-starter-openfeign”

3.找本层(order-core)的pom.xml

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_intellij-idea_08

可以看到,本层没有引入“spring-cloud-starter-openfeign”。

4.找上层的pom.xml

找“account-api”和“storage-api”的pom.xml

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_ide_09


Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_xml_10

可以看到,“account-api”和“storage-api”都没有引入“spring-cloud-starter-openfeign”

5.找上上层的pom.xml

“account-api”和“storage-api”都以此pom.xml为父级:../../../parent/parent-api/pom.xml

Intellij IDEA--根据maven依赖名查找它是哪个pom.xml引入的_intellij-idea_11

OK,找到了。

TypeScript vue plugin没有提示 vue2.0 typescript

老项目如何接入typescript之前不是ts写的老项目,想接入ts,首先使用vue命令安装typescriptvue add typescript下面依次对安装过程中出现的选项进行解释E:\test>vue add typescript ? Installing @vue/cli-plugin-typescript... + @vue/cli-plugin-typescript@5.

java 拼接or java 拼接变量名

变量变量表示内存中的一个存储区域该区域有自己的名称[变量名]和类型[数据类型]变量必须先声明,后使用,即有顺序该区域的数据或值可以在同一类型范围内不断变化变量在同一作用域内不能重名变量=变量名+值+数据类型 (变量三要素)程序中加号的使用当左右两边都是数值时做加法运算当左右两边有一方字符串,则做拼接运算顺序为从左到右System.out.println(100+98);//198 System.o