pringm-SpringMVC+mybatis如何向前台发送JSON数据?新手求解!

问题描述

SpringMVC+mybatis如何向前台发送JSON数据?新手求解!

项目需要用到另一个项目的数据,发送过来的是一个JSON格式的字符串。请问如何可以在前台用easyUI的dategrid显示

解决方案

两种方式:1、通过response写回去,例如response.getWriter().write("1111111");
2、你可以通过注解@ResponseBody写回去,例如:
@ResponseBody
@RequestMapping("/findById.do")
public Person findById(String id,
HttpServletResponse response) {
Person person = new Person();
person.setName("shaye");
....
return person;
}

时间: 2024-12-12 15:22:20

pringm-SpringMVC+mybatis如何向前台发送JSON数据?新手求解!的相关文章

java 使用http协议访问api接口,发送json数据

问题描述 java 使用http协议访问api接口,发送json数据 http访问 api接口,http的头需要加入id 和密钥进行验证,发送json格式的数据给应用程序,求大神指教.有没有实例程序可供参考的,谢谢各位了 解决方案 jsp服务器端 变量 = request.getHeader(""http头字段""); 客户端 HashMap<String String> headers = new HashMap<String String>

配置-SpringMVC中怎么将@ResponseBody返回Json数据在log4j中输出

问题描述 SpringMVC中怎么将@ResponseBody返回Json数据在log4j中输出 SpringMVC中怎么将@ResponseBody返回Json数据在log4j中输出 spring配置如下: <!-- json转换器 --> text/html;charset=UTF-8 controller如下: @RequestMapping("/saveUser") @ResponseBody public User saveUser(){ User user =

php-求一段能用的PHP发送json数据的代码

问题描述 求一段能用的PHP发送json数据的代码 不要复制粘贴的,网上都不能用 function http_post_data($url, $strjson) { $ch = curl_init(); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, $strjson); curl_setopt($ch, CURLOPT_HTT

iOS开发网络篇—发送json数据给服务器以及多值参数

一.发送JSON数据给服务器 发送JSON数据给服务器的步骤: (1)一定要使用POST请求 (2)设置请求头 (3)设置JSON数据为请求体 代码示例: 1 #import "YYViewController.h" 2 3 @interface YYViewController () 4 5 @end 6 7 @implementation YYViewController 8 9 - (void)viewDidLoad 10 { 11 [super viewDidLoad]; 12

服务器接收方法-Android向服务器发送json数据,服务器怎么把post过去的数据取出来?

问题描述 Android向服务器发送json数据,服务器怎么把post过去的数据取出来? Android端:Resquest url:http://192.168.23.7:8080/TennisWeb/find!login.action 数据:post json:{""username"":""shan""password"":""1234""}到服务器(ssh),

curl向web服务器发送json数据

c++使用libcurl: 1 /* 2 *g++ demo.cpp -g -Wall -lcurl 3 */ 4 5 #include <string.h> 6 #include <stdlib.h> 7 #include <stdio.h> 8 #include <iostream> 9 #include <curl/curl.h> 10 11 int getUrl(const char* filename) 12 { 13 CURL* cu

php 通过curl post发送json数据实例

例1  代码如下 复制代码 $data = array("name" => "Hagrid", "age" => "36");                                                                    $data_string = json_encode($data);                                            

有json数据,如何发送post请求。

问题描述 有json数据,如何发送post请求. 我是在子线程访问的,是不是必须在ancytask里面请求?直接在子线程里面请求可以不?但是得不到服务器的响应.不知道该怎么办.接口是好的,测过了,前面的是地址,后面的是json数据,两种我都用了 解决方案 提供给你我写的片段代码. import javax.ws.rs.client.Client; import javax.ws.rs.client.ClientBuilder; import javax.ws.rs.client.Entity;

php接口如何向app发送处理过的json数据

问题描述 php接口如何向app发送处理过的json数据 就是说php做接口,我的相应Json数据已经处理好了,怎么向客户端APP发送Json数据呢?还是不用处理,只要得到处理后的Json数据就好? 解决方案 你只要写出去就好,请求的数据格式需要APP请求的发起端设置. 解决方案二: 一般都是app那边向你请求的,除非你建立来双向连接.. 解决方案三: 服务端的接口是不需要处理JSON数据的,客户端来请求这个接口并获取到数据. 因PHP和其他语音的JSON格式不太一致有时可能会出现解析不出的问题