我在 Java 中创建了我的第一个 Azure 函数,因为我需要使用特定的外部 jar 文件。我在 VS Code 中工作,我在文档中找到了关于使用外部库的简短参考。第三方库。
但是我没有让导入工作。如果有一个使用外部库的 VS Code Java Azure Functions 项目的示例或更详细的分步文档,那就太好了。
qq_花开花谢_0
浏览 142回答 1
1回答
GCT1015
在 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.htmlmvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging> -DgeneratePom=trueWhere: <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