postman请求JSON类型数据,获取后台数据库中的数据并进行响应

第一次使用postman工具,进行前后台数据交互,简单的一次请求,能够灵活运用mybatis的性能

1.postman请求的数据:

postman请求JSON类型数据,获取后台数据库中的数据并进行响应_第1张图片
2.使用IDEA单独使用测试,导入相关jar包

3.把需要进行操作的数据库中的那个表进行实体类封装 domain

postman请求JSON类型数据,获取后台数据库中的数据并进行响应_第2张图片
4.dao

package com.xxx.dao;
import com.cq.domain.Doorkeeper;
import java.util.List;

public interface DoorkeeperDao {
    //查询所有
    public List getAll();
}

5 resources/mapper/

postman请求JSON类型数据,获取后台数据库中的数据并进行响应_第3张图片

6.连接IO流进行读写操作

package com.xxx;
import java.io.*;
import java.net.URL;
import java.net.URLConnection;
public class HttpRequest {
    public static String sendPost(String url, String param) {
        PrintWriter out = null;
        BufferedReader in = null;
        String result = "";
        try {
            URL realUrl = new URL(url);
            // 打开和URL之间的连接
            URLConnection conn = realUrl.openConnection();
            // 设置通用的请求属性
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");
            // 发送POST请求必须设置如下两行
            conn.setDoOutput(true);
            conn.setDoInput(true);
            //1.获取URLConnection对象对应的输出流
            out = new PrintWriter(conn.getOutputStream());
            //2.中文有乱码的需要将PrintWriter改为如下
//            out=new OutputStreamWriter(conn.getOutputStream(),"UTF-8");

            // 发送请求参数
            out.print(param);
            // flush输出流的缓冲
            out.flush();
            // 定义BufferedReader输入流来读取URL的响应
            in = new BufferedReader(new InputStreamReader(conn.getInputStream()));

            String line;
            while ((line = in.readLine()) != null) {
                result += line;
            }
        } catch (Exception e) {
            System.out.println("发送 POST 请求出现异常!" + e);
            e.printStackTrace();
        }
        //使用finally块来关闭输出流、输入流
        finally {
            try {
                if (out != null) {
                    out.close();
                }
                if (in != null) {
                    in.close();
                }
            } catch (IOException ex) {
                ex.printStackTrace();
            }
        }
        System.out.println("post推送结果:" + result);
        return result;
    }


}

7.调用函数

 public static void sendInfo(String devcieCode,String cardNumber){
        JSONObject jsonParam = new JSONObject();
        jsonParam.put("token", "xxxxxxxxxxxxxxxx");
        jsonParam.put("method","write");
        jsonParam.put("device", devcieCode+".1.1");
        jsonParam.put("timeout","3");
        jsonParam.put("value","add,"+cardNumber);
        String urls="http://192.168.xx.xxx:30002/xxx";
        String data=GetJsonData.getJsonData(jsonParam,urls);
    }

8.SqlMapperConfig.xml配置




    
    
        
            
            
                
                
                
                
            
        
    
    
    
        
    

9.main方法中:

public static void main(String[] args) throws IOException {
        // 1.加载SqlMapConfig.xml
        String location = "SqlMapConfig.xml";
        InputStream is = Resources.getResourceAsStream(location);
        SqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();
        // 2.获取session
        SqlSessionFactory factory = builder.build(is);
        SqlSession session = factory.openSession();

        DoorkeeperPrivilegeDao m2 = session.getMapper(DoorkeeperPrivilegeDao.class);
        List list2 = m2.getAll();
        for(DoorkeeperPrivilege doorkeeperPrivilege : list2){
            sendInfo(doorkeeperPrivilege.getDeviceCode(),doorkeeperPrivilege.getCardNumber());
        }
        session.commit();
        session.close();

    }

总结:一个是post请求数据需要进行IO流的数据读写,一个是能够的单独使用mybatis进行数据库连接,掌握这两点,基本上就可以根据实际开发来操作。

你可能感兴趣的:(postman请求JSON类型数据,获取后台数据库中的数据并进行响应)