Crow与其说是编译,倒不如说是环境搭建。Crow只需要包含头文件,所以不用编译生成lib。
Crow环境搭建
- boost(可以不编译boost,只需要boost头文件即可)
- asio (可以不编译,直接包含头文件。不能直接使用boost的asio,boost的asio存在命名空间)
- zlib (可选)用于web压缩,如果不使用压缩,可以不包含。开启需要定义宏:
CROW_ENABLE_COMPRESSION
boost环境可参考:boost 编译
asio环境
下载:https://think-async.com/Asio/
编译:需要依赖boost(可以不编译boost)
- 打开目录 ,找到
Makefile.msc
Makefile.mgw
修改BOOSTDIR指向自己的boost目录BOOSTDIR = C:\\Boost\\include\\boost_1_73
- 打开VS命令行工具,执行
nmake -f Makefile.msc
编译完成
Hellow Word
-
1.包含Crow头文件,boost头文件,asio头文件
-
2 开始使用Crow
crow::SimpleApp app;CROW_ROUTE(app, "/123")([&](crow::request& req, crow::response &resp) {resp.body = "123";resp.end();});app.port(18080).multithreaded().run();
扩展:Crow加载静态资源
将静态资源放在运行目录statics
,此时通过web访问http://127.0.0.1:18080/statics/index.html
,将自动加载网页所需要的cs,js,png等资源。
//处理所有未被处理的路径CROW_CATCHALL_ROUTE(app)([&](const crow::request& req, crow::response& resp) {//如果访问path以/statics/开始,if (_strnicmp(req.url.c_str(), "/statics/", 9) == 0){//拼接静态文件路径,不要以绝对路径,内部会处理:保证web服务的安全std::string path = req.url.substr(9);std::string file_path = std::string("statics/") + path;if (_access(file_path.c_str(), 00) == 0){resp.set_static_file_info(file_path);resp.code = crow::status::OK;resp.end();}}});
结果展示:
强烈建议hv(不支持压缩),一句代码搞定
HttpService router;
// statics为urlpath
// smart-yi-ui为当前服务静态资源所在目录
router.Static("/statics", "smart-yi-ui");
http://127.0.0.1:18080/statics/index.html