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

我在 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&nbsp; -Dfile=<path-to-file>&nbsp; -DgroupId=<group-id>&nbsp; -DartifactId=<artifact-id>&nbsp; -Dversion=<version>&nbsp; -Dpackaging=<packaging>&nbsp; -DgeneratePom=trueWhere: <path-to-file>&nbsp; the path to the file to load&nbsp; &nbsp; &nbsp; &nbsp;<group-id>&nbsp; &nbsp; &nbsp; the group that the file should be registered under&nbsp; &nbsp; &nbsp; &nbsp;<artifact-id>&nbsp; &nbsp;the artifact name for the file&nbsp; &nbsp; &nbsp; &nbsp;<version>&nbsp; &nbsp; &nbsp; &nbsp;the version of the file&nbsp; &nbsp; &nbsp; &nbsp;<packaging>&nbsp; &nbsp; &nbsp;the packaging of the file e.g. jar
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java