0

我正在使用带有 erlang 插件的 Intellij IDEA,用 rebar 编译。当我在 Intellij 中启动控制台时,运行

application:load(eddy).
application:start(eddy).

在我的代码中,application:get_env 总是返回 undefined。sys.config 是否仅在发布时可用?

4

1 回答 1

3

Calling application:load() (or start()) will only read the application's .app file, not any sys.config file you might have. If you're not using releases, you can start Erlang with "erl -config sys.config".

于 2013-08-14T10:51:20.233 回答