浏览器给openresty连接发送参数请求,查询数据库,并返回json数据
nginx.conf配置文件
#user nobody;
worker_processes 1;
error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log main;
log_format log_resp_body '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" '
'$request_time $bytes_sent $request_length "$request_body" "$resp_body"';
lua_package_path "/usr/local/openresty/lualib/?.lua;;"; #lua 模块
lua_package_cpath "/usr/local/openresty/lualib/?.so;;"; #c模块
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
server_tokens off;
#gzip on;
# lua
#lua_shared_dict limit 10m;
#lua_package_path "/usr/local/openresty/nginx/conf/waf/?.lua";
#init_by_lua_file "/usr/local/openresty/nginx/conf/waf/init.lua";
#access_by_lua_file "/usr/local/openresty/nginx/conf/waf/access.lua";
server {
listen 80;
server_name 192.168.0.174;
#charset koi8-r;
access_log logs/host.access.log log_resp_body;
lua_need_request_body on;
set $resp_body "";
body_filter_by_lua '
local resp_body = string.sub(ngx.arg[1], 1, 1000)
ngx.ctx.buffered = (ngx.ctx.buffered or "") .. resp_body
if ngx.arg[2] then
ngx.var.resp_body = ngx.ctx.buffered
end
';
location / {
root html;
index index.html index.htm;
}
location =/hello {
default_type 'text/plain';
content_by_lua 'ngx.say("欢迎使用Lua")';
}
location /lua {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/test.lua;
}
location /lua_var {
default_type 'text/plain';
content_by_lua_block {
ngx.say(ngx.var.arg_b)
}
}
location /lua_request {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/lua_request.lua;
}
location /lua_response {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/lua_response.lua;
}
location = /lua_log{
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/lua_log.lua;
}
location /lua_sum {
internal;
content_by_lua_block {
local args = ngx.req.get_uri_args()
ngx.say(tonumber(args.a) + tonumber(args.b))
}
}
location = /lua_sum_test {
content_by_lua_block {
local res = ngx.location.capture("/lua_sum", {args={a=3, b=8}})
ngx.say("status:", res.status, " response:", res.body)
}
}
location /lua_redirect {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/lua_redirect.lua;
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
location ~ /lua_cjson {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/test_cjson.lua;
}
location /lua_mysql {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/test_mysql.lua;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
test_mysql.lua文件
--[[
说明:
1.传递单个参数进行查询
2.实际使用需要修改数据库连接信息,查询表的信息
3.操作流程大致是获取传递过来的参数,连接数据库,构造查询sql,然后以json格式返回查询的结果
--]]
-- 引用外部lua文件模块
local mysql = require("resty.mysql")
local cjson = require("cjson")
local db, err = mysql:new()
if not db then
ngx.say("nfailed to instantiate mysql: ", err)
return
end
--设置数据库连接超时时间,1 sec
db:set_timeout(1000)
local props = {
host = "192.168.0.254",
port = 3306,
database = "hkd",
user = "hkd",
password = "Hkd123456;",
charset = "utf8",
max_packet_size = 1024 * 1024,
}
local ok, err, errcode, sqlstate = db:connect(props)
if not ok then
ngx.say("failed to connect: ", err, ": ", errcode, " ", sqlstate)
-- return close_db(db)
end
-- ngx.say("connected to mysql.")
-- 获取get参数
-- 1.链接样式:http://192.168.0.175/lua_mysql?name=111
-- 2.curl样式:curl http://192.168.0.175/lua_mysql?name=111
-- 3.postman软件:http://192.168.0.175/lua_mysql?name=111 (在Params中添加参数)
local arg = ngx.req.get_uri_args()
for k,v in pairs(arg) do
local select_sql = string.format("select * from jeecg_demo where %s=%s" ,k,v) -- 字符串格式化
res, err, errcode, sqlstate = db:query(select_sql)
if not res then
ngx.say("select error : ", err, " , errcode : ", errcode, " , sqlstate : ", sqlstate)
return close_db(db)
end
end
--获取post参数
-- 1.curl样式:curl http://192.168.0.175/lua_mysql -X POST -d "name=111"
-- 2.postman软件:http://192.168.0.175/lua_mysql (在x-www-form-urlencoded中添加参数)
ngx.req.read_body()
local arg = ngx.req.get_post_args()
for k,v in pairs(arg) do
-- ngx.say("[POST] key:", k, " v:", v)
local select_sql = string.format("select * from jeecg_demo where %s=%s" ,k,v) -- 字符串格式化
res, err, errcode, sqlstate = db:query(select_sql, 10)
if not res then
ngx.say("bad result: ", err, ": ", errcode, ": ", sqlstate, ".")
return
end
end
-- 把查询结果包装成json返回
ngx.say("result: ", cjson.encode(res))
local ok, err = db:set_keepalive(10000, 100)
if not ok then
ngx.say("failed to set keepalive: ", err)
return
end
-- 关闭数据库连接
local function close_db(db)
if not db then
return
end
db:close()
-- ngx.say("success to close db: ", err)
end
close_db(db)
openresty下lualib目录结构
[root@bogon openresty]# tree lualib/
lualib/
├── cjson.so
├── librestysignal.so
├── ngx
│ ├── balancer.lua
│ ├── base64.lua
│ ├── errlog.lua
│ ├── ocsp.lua
│ ├── pipe.lua
│ ├── process.lua
│ ├── re.lua
│ ├── resp.lua
│ ├── semaphore.lua
│ ├── ssl
│ │ └── session.lua
│ └── ssl.lua
├── redis
│ └── parser.so
├── resty
│ ├── aes.lua
│ ├── core
│ │ ├── base64.lua
│ │ ├── base.lua
│ │ ├── ctx.lua
│ │ ├── exit.lua
│ │ ├── hash.lua
│ │ ├── misc.lua
│ │ ├── ndk.lua
│ │ ├── phase.lua
│ │ ├── regex.lua
│ │ ├── request.lua
│ │ ├── response.lua
│ │ ├── shdict.lua
│ │ ├── time.lua
│ │ ├── uri.lua
│ │ ├── utils.lua
│ │ ├── var.lua
│ │ └── worker.lua
│ ├── core.lua
│ ├── dns
│ │ └── resolver.lua
│ ├── limit
│ │ ├── conn.lua
│ │ ├── count.lua
│ │ ├── req.lua
│ │ └── traffic.lua
│ ├── lock.lua
│ ├── lrucache
│ │ └── pureffi.lua
│ ├── lrucache.lua
│ ├── md5.lua
│ ├── memcached.lua
│ ├── mysql.lua
│ ├── random.lua
│ ├── redis.lua
│ ├── sha1.lua
│ ├── sha224.lua
│ ├── sha256.lua
│ ├── sha384.lua
│ ├── sha512.lua
│ ├── sha.lua
│ ├── shell.lua
│ ├── signal.lua
│ ├── string.lua
│ ├── upload.lua
│ ├── upstream
│ │ └── healthcheck.lua
│ └── websocket
│ ├── client.lua
│ ├── protocol.lua
│ └── server.lua
└── tablepool.lua
浏览器给openresty连接发送参数请求,查询数据库,并返回json数据的更多相关文章
- 请求*.html后缀无法返回json数据的问题
在springmvc中请求*.html不可以返回json数据. 修改web.xml,添加url拦截格式.
- laravel 查询数据库first()返回的数据转数组
使用 get_object_vars()可以将他抓转为数组get_object_vars — 返回由对象属性组成的关联数组: 在laravel中其实还可以用 toArray(); json_decod ...
- javaweb Servlet接收Android请求,并返回json数据
1.实现功能 (1)接收http请求 (2)获取Android客户端发送的参数对应的内容 (3)hibernate查询数据库 (4)返回json数据 2.java代码 import EntityCla ...
- Android系列之网络(一)----使用HttpClient发送HTTP请求(通过get方法获取数据)
[声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/4 ...
- Query通过Ajax向PHP服务端发送请求并返回JSON数据
Query通过Ajax向PHP服务端发送请求并返回JSON数据 服务端PHP读取MYSQL数据,并转换成JSON数据,传递给前端Javascript,并操作JSON数据.本文将通过实例演示了jQuer ...
- (一)----使用HttpClient发送HTTP请求(通过get方法获取数据)
(一)----使用HttpClient发送HTTP请求(通过get方法获取数据) 一.HTTP协议初探: HTTP(Hypertext Transfer Protocol)中文 “超文本传输协议”,是 ...
- jQuery通过Ajax向PHP服务端发送请求并返回JSON数据
SON(JavaScript Object Notation) 是一种轻量级的数据交换格式.易于人阅读和编写,同时也易于机器解析和生成.JSON在前后台交互的过程中发挥着相当出色的作用.请接着往下看教 ...
- Android之网络----使用HttpClient发送HTTP请求(通过get方法获取数据)
[正文] 一.HTTP协议初探: HTTP(Hypertext Transfer Protocol)中文 "超文本传输协议",是一种为分布式,合作式,多媒体信息系统服务,面向应用层 ...
- 使用jQuery解析JSON数据(由ajax发送请求到php文件处理数据返回json数据,然后解析json写入html中呈现)
在上一篇的Struts2之ajax初析中,我们得到了comments对象的JSON数据,在本篇中,我们将使用jQuery进行数据解析. 我们先以解析上例中的comments对象的JSON数据为例,然后 ...
随机推荐
- ubuntu搭建、安装gitlab服务器以及初始化密码
本为14.04 在搭建之前要确定其网络环境是没有问题.用root身份进行操作 1.安装和配置必要的依赖关系 apt-get update apt-get install -y curl openssh ...
- 自定义实现Java动态代理
转自:https://www.cnblogs.com/rjzheng/p/8750265.html 一 借助JDK的API实现: 1.先创建一个接口,并实现它 public interface Per ...
- (转)mysql基础命令
Sql代码 asc 按升序排列 desc 按降序排列 下列语句部分是Mssql语句,不可以在access中使用. SQL分类: DDL—数据定义语言(CREATE,ALTER,DROP,DECLARE ...
- 【转】diamond专题(二)– 核心原理介绍
特别提示:本人博客部分有参考网络其他博客,但均是本人亲手编写过并验证通过.如发现博客有错误,请及时提出以免误导其他人,谢谢!欢迎转载,但记得标明文章出处:http://www.cnblogs.com/ ...
- 通过实例聊聊Java中的多态
Java中的多态允许父类指针指向子类实例.如:Father obj=new Child(); 那么不禁要发问?? 使用这个父类型的指针访问类的属性或方法时,如果父类和子类都有这个名称的属性或方法,哪 ...
- LDA(Latent Dirichlet Allocation)主题模型算法
原文 LDA整体流程 先定义一些字母的含义: 文档集合D,topic集合T D中每个文档d看作一个单词序列< w1,w2,...,wn >,wi表示第i个单词,设d有n个单词.(LDA里面 ...
- inner join, left join, right join, full outer join的区别
总的来说,四种join的区别可以描述为: left join 会从左表(shop)那里返回所有的记录,即使在右表(sale_detail)中没有匹配的行. right outer join 右连接,返 ...
- Ubuntu下查找nginx日志
使用awk检测nginx日志, 按小时计数 awk '{split($4,array,"[");if(array[2]>="29/May/2016:00:00:26 ...
- svn导出项目到myeclipse,运行报ClassNotFoundException
一开始以为是 这样的svn导出项目到myeclipse,运行报ClassNotFoundException 后来不行 又看了一下 还不行 以为是这样的MyEclipse2014报错java.lang ...
- java:LeakFilling(Springmvc)
1.后台可以同时多个对象接收前端页面的值:(如图两个都打印了) 2.参数绑定的注解,通过该注解可以解决参数名称与controller中形参名称不一致的问题: @RequestParam(name=&q ...