对于初学maven的人来说刚开始会有个困惑,那就是怎么知道依赖的jar的groupId和atrifactId是什么,
比如要依赖mybatis,会在pom.xml中配置如下:
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis</artifactId>
- <version>3.0.5</version>
- </dependency>
那怎么知道groupId是org.mybatis,artifactId是mybatis呢。方法很简单,可以到maven的官网查询,打开如下网址,查询框中输入mybatis
http://search.maven.org/#browse
选择你要的版本,进去就可以看到你想要的了