在 Erlang 应用程序中加载依赖项的代码路径的正确方法是什么。

What is the correct way to load the code paths of dependencies in an Erlang application.

所以假设我有一个 rebar 应用程序结构并且在 deps 文件夹中我有许多依赖项,一些是库应用程序,一些是需要启动的应用程序。我通常这样做:

start(_Type, _Args) ->
   code:add_path("../deps/depapp/ebin"),
   {ok, _} = application:ensure_all_started(depapp),

这是在开发环境中执行此操作的正确方法吗?在生产中怎么样?

你用的方法不一定是错误的,但可能会暴露出一些问题。例如,通过这种方式,您无法选择启动必须在您的应用程序之前启动的依赖应用程序。

因此 loadingstarting 相关的 OTP 应用程序或库还有其他替代方案。

1) 使用 erl 命令行标志:

erl -pa ebin deps/*/ebing -s your_dep_app start -s your_app start

2) 使用包管理器处理它:

例如,作为包管理器的 Rebar 可以为您处理。您需要在 rebar.config 中指定您的应用程序依赖项,然后为 Rebar2 发出 rebar get-deps 或为 Rebar3 发出 rebar3 compile。以下是 Rebar3 的示例配置文件片段:

{deps,[
  %% Packages
  rebar,
  {rebar,"1.0.0"},
  {rebar, {pkg, rebar_fork}}, % rebar app under a different pkg name
  {rebar, "1.0.0", {pkg, rebar_fork}},
  %% Source Dependencies
  {rebar, {git, "git://github.com/erlang/rebar3.git"}},
  {rebar, {git, "http://github.com/erlang/rebar3.git"}}]}.

有关 Rebar 依赖管理器的更多信息,请查看 this link。

此外,对于使用 Rebar 启动或加载它们,您可以发布一个版本并让 Rebar 启动或加载它们。以下是用于发布的示例 Rebar 配置文件的片段:

{relx, [
    {release, 
    {your_app, "0.1.0"},
        [your_dep_app_1,
         {your_dep_app_2, load}]}]}.

此配置加载并启动 your_dep_app_1 但仅加载 your_dep_app_2。有关 Rebar 发布管理器的更多信息,请查看 this link.