VS Code上的Java Azure函数,如何引用和使用外部jar库

时间:2019-03-04 15:16:09

标签: java jar visual-studio-code azure-functions

我用Java创建了我的第一个Azure函数,因为我需要使用特定的外部jar文件。 我正在使用VS Code工作,并且在文档中找到了有关使用外部库的简短参考。 Third-party libraries

但是,我无法执行导入操作。拥有使用外部库或更详细的分步文档的VS Code Java Azure Functions项目的示例将非常棒。

1 个答案:

答案 0 :(得分:1)

在maven项目中,所有依赖项均由pom.xml处理。我们可以使用Maven存储库下载依赖项,也可以从本地目录中添加依赖项。将jar安装到本地Maven存储库中可以完成以下操作。

参考: http://maven.apache.org/general.html#importing-jars https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html

mvn install:install-file
  -Dfile=<path-to-file>
  -DgroupId=<group-id>
  -DartifactId=<artifact-id>
  -Dversion=<version>
  -Dpackaging=<packaging>
  -DgeneratePom=true

Where: <path-to-file>  the path to the file to load
       <group-id>      the group that the file should be registered under
       <artifact-id>   the artifact name for the file
       <version>       the version of the file
       <packaging>     the packaging of the file e.g. jar