为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

qq_花开花谢_0 2022-07-20 16:08:08
我在 Java 中创建了我的第一个 Azure 函数,因为我需要使用特定的外部 jar 文件。我在 VS Code 中工作,我在文档中找到了关于使用外部库的简短参考。第三方库。但是我没有让导入工作。如果有一个使用外部库的 VS Code Java Azure Functions 项目的示例或更详细的分步文档,那就太好了。
查看完整描述

1 回答

?
GCT1015

TA贡献1827条经验 获得超4个赞

在 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


查看完整回答
反对 回复 2022-07-20
  • 1 回答
  • 0 关注
  • 141 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信