您应该将应用程序属性放在 rebar erlang 应用程序中的什么位置?
新手问题:我编写了第一个基于 rebar 的 erlang 应用程序。我想配置一些基本属性,例如服务器主机等。放置它们的最佳位置在哪里以及如何将它们加载到应用程序中?
A newbie question: I wrote my first rebar based erlang application. I want to configure some basic properites like server host etc. Where is the best place to put them and how should I load them into the app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
接下来的步骤是发布版本并在其中创建节点。节点在独立的 Erlang VM 中运行您的应用程序。使用 rebar 创建版本的一个很好的起点:
Erlang 应用程序 使用 Rebar 进行管理
创建版本后, 。然后,可以将节点中所有应用程序的配置属性添加到
您可以按如下方式读取各个属性:
或者,可以将应用程序的所有属性读取为
在
sys.config
中,可以将属性添加为一个proplist
。例子:
The next steps are to make a release and create a node in it. A node runs your application in a standalone Erlang VM. A good starting point for creating a release using rebar:
Erlang Application Management with Rebar
Once you have created a release. The configuration properties for all applications in your node can then be added to
You can read individual properties as follows:
Alternatively, all properties for your application can be read as
In
sys.config
, properties can be added as aproplist
.Example: