博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用rebar3创建erlang项目通过cowboy与页面交互
阅读量:6708 次
发布时间:2019-06-25

本文共 2739 字,大约阅读时间需要 9 分钟。

hot3.png

  1. 使用rebar3创建erlang项目
    1. rebar3 new app test_cowboy
  2. 修改rebar.config
    1. {plugins, [
              {rebar3_run, {git, "git://github.com/tsloughter/rebar3_run.git", {branch, "master"}}}
      ]}.
      {erl_opts, [debug_info]}.
      {deps, [
              {cowboy, {git, "git://github.com/extend/cowboy.git",{tag, "1.0.0"}}}
      ]}.
      {relx, [{release, {test_cowboy, "1.0.0"}, [test_cowboy]},
              {dev_mode, false},
              {include_erts, true},
              {system_libs, true},
              {include_src, false},
              {sys_config, "conf/sys.config"},
              {vm_args, "conf/vm.args"},
              {extended_start_script, true}
      ]}.
  3. 创建conf文件夹
    1. mkdir conf && cd conf
  4. 在conf下创建vm.args和sys.config文件
    1. vm.args
      1. ## Name of the node
        -name test_cowboy
        ## Cookie for distributed erlang
        -setcookie shadowolf
    2. sys.config
      1. [].
  5. 修改src/test_cowboy.app.src
    1. {application, test_cowboy,
      [{description, "Hello Erlang"},
          {vsn, "0.1.0"},
          {registered, []},
          {mod, { test_cowboy_app, []}},
          {applications,
              [   kernel,
                  stdlib,
                  cowboy
              ]},
          {env,[]},
          {modules, []}
      ]}.
  6. 修改src/test_cowboy_sup.erl
    1. -module(test_cowboy_sup).
      -behaviour(supervisor).
      -export([start_link/0]).
      -export([init/1]).
      -define(CHILD(I, Type), {I, {I, start_link, []}, permanent, 5000, Type, [I]}).
      -define(SERVER, ?MODULE).
      start_link() ->
              supervisor:start_link({local, ?SERVER}, ?MODULE, []).
      init([]) ->
              {ok, { {one_for_all, 0, 1}, [?CHILD(test_cowboy_web_svr, worker)]} }.
  7. 新建src/test_cowboy_web_svr.erl文件
    1. -module(test_cowboy_web_svr).
      -author("zhangpeng"). -behaviour(gen_server).
      -export([start_link/0]).
      -export([init/1,
          handle_call/3,
          handle_cast/2,
          handle_info/2,
          terminate/2,
          code_change/3]).
      -define(SERVER, ?MODULE).
      -record(state, {}).
      start_link() ->
          gen_server:start_link({local, ?SERVER}, ?MODULE, [], []).
      init([]) ->
          Dispatch = cowboy_router:compile(
              [
                  {'_',
                      [
                          {"/test_cowboy_1", test_cowboy_1, []}
                      ]
                  }
              ]
          ),
          NbAcceptorts = 100,
          MaxConn = 1024 ,
          Port = 8003,
          {ok, _} = cowboy:start_http(test_cowboy_http, NbAcceptorts,
          [{port, Port},
          {max_connections, MaxConn}],
          [{env, [{dispatch, Dispatch}]}]),
          {ok, #state{}}.
      handle_call(_Request, _From, State) ->
          {reply, ok, State}.
      handle_cast(_Request, State) ->
          {noreply, State}.
      handle_info(_Info, State) ->
          {noreply, State}.
      terminate(_Reason, _State) ->
          ok.
      code_change(_OldVsn, State, _Extra) ->
          {ok, State}.
  8. 新建src/test_cowboy_1.erl
    1. -module(test_cowboy_1).
      -author("zhangpeng").
      -behaviour(cowboy_http_handler).
      -export([init/3]).
      -export([handle/2]).
      -export([terminate/3]).
      init(_, Req, _Opts) ->
          {ok, Req, undefined}.
      handle(Req, State) ->
          {Param1,Req1} = cowboy_req:qs_val(<<"param1">>,Req),
          {Param2,Req2} = cowboy_req:qs_val(<<"param2">>,Req1),
          {ok, ReqReturn} = cowboy_req:reply(200, [{<<"content-type">>, <<"text/plain">>}], <<"Hello Erlang!">>, Req2),
          {ok, ReqReturn, State}.
      terminate(_Reason, _Req, _State) ->
          ok.

 

 

转载于:https://my.oschina.net/shadowolf/blog/847182

你可能感兴趣的文章
如何在遗留代码基础上开发
查看>>
git使用命令, 特别:git checkout -b a 与 git branch a区别(转)
查看>>
vs中附加IIS进程调试
查看>>
Mongodb的安装方法 -- 转自朋友微博
查看>>
作业09-异常
查看>>
UI基础 - UINavigationController
查看>>
C#综合揭秘——细说多线程(下)
查看>>
第十一回 基础才是重中之重~Conditional特性使代码根据条件在debug或者release模式中执行...
查看>>
Attention Model详解
查看>>
Mysql数据库三大范式
查看>>
判断闰年
查看>>
leetcode — binary-tree-level-order-traversal
查看>>
ubuntu 增加一个用户 并赋予权限
查看>>
Python mix-in 组合 ~ 将类组合起来 .
查看>>
图文混排--CoreText的简单运用
查看>>
论static关键词
查看>>
python 利用split读取文本文件中每一行的数字并保存至相应文件夹
查看>>
数据增强(每10度进行旋转,进行一次增强,然后对每张图片进行扩充10张patch,最后得到原始图片数*37*10数量的图片)...
查看>>
C# json 嵌套 排序 生成签名
查看>>
20172303 2017-2018-2 《程序设计与数据结构》第6周学习总结
查看>>