如何在eclipse中构建ejb源代码



我想在eclipse中构建ejb源代码。我遵循以下步骤。

1. Download ejabberd source code from git hub from this link
 https://github.com/processone/ejabberd.
2. Add erlide plugin in eclipse.
3. Now i import it as general project in elipse.
**source code import successfully. But it shows error** 
     Error:
     *record xmlel undefined*

有谁知道如何在eclipse中导入ejabberd源代码吗

您需要ejabberd下载在rebar.config.scriptmix.exs中定义的所有依赖项。

你需要很多子组件。例如,您似乎缺少定义de xmlel记录的ProcessOne XML模块:https://github.com/processone/xml

通常,要从源代码构建ejabberd,您需要:
  • 生成配置:./autogen.sh
  • 用你需要的模块运行configure: ./configure
  • 运行make

您需要指示Eclipse执行这些步骤来构建ejb。Ejabberd文档解释了如何从源代码构建Ejabberd: http://docs.ejabberd.im/admin/guide/installation/#installing-ejabberd-from-source-code

请注意,如果你在Windows上有,你可能需要找到一种方法来构建本地C Erlang模块(如XML, TLS, Zlib等)。

作为旁注,ejb开发是在Emacs上进行的,Emacs可能是使用Erlang进行开发的一般参考工具。

相关内容

  • 没有找到相关文章

最新更新