咱們在pom文件中導入java
<dependency> <groupId>json-taglib</groupId> <artifactId>json-taglib</artifactId> <version>0.4.1</version> </dependency>
這個能夠看見json
這個到不進去,maven倉庫中沒有這個包。maven
解決辦法:
1:url
json-taglib依賴:spa
<dependency> <groupId>atg.taglib.json</groupId> <artifactId>json-taglib</artifactId> <version>0.4.1</version> </dependency>
指定倉庫:.net
<repositories> <repository> <id>java.net</id> <url>http://maven.jahia.org/maven2</url> </repository> </repositories>
2:code
本身下載json-taglib 0.4.1 jar包安裝在本身本地倉庫,之後導包就會從本地導包。(推薦)blog
下載地址:https://sourceforge.net/projects/json-taglib/get
下面是一個json包導入命令,能夠參考一下:it
mvn install:install-file -DgroupId=<group_name> -DartifactId=<artifact_name> -Dversion=<version_no> -Dfile=<path_of_the_local_jar> -Dpackaging=jar
下面是個人安裝命令:
mvn install:install-file -Dfile=C:\Users\liweichuan\Downloads\json-taglib-0.4.1.jar -DgroupId=json-taglib -DartifactId=json-taglib -Dversion=0.4.1 -Dpackaging=jar
附上截圖:
就能夠正常使用了。