对于初学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
另外一个查找地址,这个比较全
http://mvnrepository.com/
就可以查到pom.jar包以及所有相关的配置信息