标签:val mode 图片 tput ring 属性 响应 doc orm
返回视图和数据模型
返回内部资源逻辑视图名
@RequestMapping("/first.do") public String dealDo(String name,Integer age) { return "show"; }
ajax 请求
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script type="text/javascript"> $(function(){ $("#button").click( function(){ $.ajax( { url:"first.do", name:"a", data:{ name:"zhangsan", age:"20" }, type:"post", dataType:"json", success:function(resp){ alert("resp:"+resp.name+" "+resp.age); } } ) } ) } ) </script> <title>Insert title here</title> </head> <body> index.jsp<br> <!-- <a href="hello.do">发起用户请求</a> <br> <img alt="图片信息" src="imagew/22.png"> --> <!-- <form action="first.do" method="post"> 姓名: <input type="text" name="name"><br> 年龄: <input type="text" name="age"><br> <input type="submit" value="post请求"><br> </form> --> <input id="button" type="submit" value="请求"> </body> </html>
@RequestMapping("/first.do") @ResponseBody // 作用把HttpMessageConverter接口转换过的诗句,通过 HttpServletResponse 输出给浏览器
//MappingJackson2HttpMessageConverter 负责读取和写入json格式的数据。利用Jackson 的 ObjectMapper读写
public void first(String name, Integer age, HttpServletResponse response) throws JsonGenerationException, JsonMappingException, IOException { Student s = new Student(); s.setName(name); s.setAge(age); // 调用Jackson的 ObjectMapper 处理java对象 ObjectMapper mapper = new ObjectMapper(); // 输出给浏览器 mapper.writeValue(response.getOutputStream(), s); }
一般是包不兼容。
降低包的版本。
处理器方法返回对象(Object),表示返回数据。对象的范围比较广泛,integer,String,自定义的对象 都是。
对象有属性,属性值是返回给浏览器的数据。
处理流程:按照数据类型调用HttpMessageConverter的实现类。例如String 的对应实现类:StringHttpMessageConverter
把返回值转换成需要的数据格式。
使用@ResponseBody ,把转换后的数据通过HttpServletResponse 的输出,输出到响应体中,即输出给浏览器。
标签:val mode 图片 tput ring 属性 响应 doc orm
原文地址:https://www.cnblogs.com/llq1214/p/11636497.html