1. 结果跳转方式:转发与重定向
kuanshen笔记
1.1 通过SpringMVC来实现转发和重定向 - 无需视图解析器
@Controller
public class ResultSpringMVC {
@RequestMapping("/rsm/t1")
public String test1(){
return "/index.jsp";
}
@RequestMapping("/rsm/t2")
public String test2(){
return "forward:/index.jsp";
}
@RequestMapping("/rsm/t3")
public String test3(){
return "redirect:/index.jsp";
}
}
1.2 通过SpringMVC来实现转发和重定向 - 有视图解析器
重定向 , 不需要视图解析器 , 本质就是重新请求一个新地方嘛 , 所以注意路径问题. 可以重定向到另外一个请求实现 .
@Controller
public class ResultSpringMVC2 {
@RequestMapping("/rsm2/t1")
public String test1(){
return "test";
}
@RequestMapping("/rsm2/t2")
public String test2(){
return "redirect:/index.jsp";
}
}
2. 数据处理
2.1 提交的域名称和处理方法的参数名一致
提交数据 : http://localhost:8080/hello?name=kuangshen 处理方法 :
@RequestMapping("/hello")
public String hello(String name){
System.out.println(name);
return "hello";
}
后台输出 : kuangshen
2.2 提交的域名称和处理方法的参数名不一致
提交数据 : http://localhost:8080/hello?username=kuangshen 处理方法 :
@RequestMapping("/hello")
public String hello(@RequestParam("username") String name){
System.out.println(name);
return "hello";
}
2.3 提交的是一个对象
要求提交的表单域和对象的属性名一致 , 参数使用对象即可
1、实体类
public class User {
private int id;
private String name;
private int age;
}
2、提交数据 : http://localhost:8080/mvc04/user?name=kuangshen&id=1&age=15
3、处理方法 :
@RequestMapping("/user")
public String user(User user){
System.out.println(user);
return "hello";
}
后台输出 : User { id=1, name='kuangshen', age=15 }
说明:如果使用对象的话,前端传递的参数名和对象名必须一致,否则就是null。
3. 数据显示到前端(3种方式)
3.1 通过ModelAndView
public class ControllerTest1 implements Controller {
public ModelAndView handleRequest(HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse) throws Exception {
ModelAndView mv = new ModelAndView();
mv.addObject("msg","ControllerTest1");
mv.setViewName("test");
return mv;
}
}
3.2 通过ModelMap
@RequestMapping("/hello")
public String hello(@RequestParam("username") String name, ModelMap
model){
model.addAttribute("name",name);
System.out.println(name);
return "hello";
}
3.3 通过Model
@RequestMapping("/ct2/hello")
public String hello(@RequestParam("username") String name, Model model){
model.addAttribute("msg",name);
System.out.println(name);
return "test";
}
3.4 三者对比
-
Model 只有寥寥几个方法只适合用于储存数据,简化了新手对于Model对象的操作和理解; -
ModelMap 继承了 LinkedMap ,除了实现了自身的一些方法,同样的继承 LinkedMap 的方法和特性; -
ModelAndView 可以在储存数据的同时,可以进行设置返回的逻辑视图,进行控制展示层的跳转。
4. 乱码问题
4.1 测试步骤
测试步骤:
1、我们可以在首页编写一个提交的表单
<form action="/e/t" method="post">
<input type="text" name="name">
<input type="submit">
</form>
2、后台编写对应的处理类
@Controller
public class Encoding {
@RequestMapping("/e/t")
public String test(Model model,String name){
model.addAttribute("msg",name);
return "test";
}
}
3、输入中文测试,发现乱码
4.2 解决方案
以前乱码问题通过过滤器解决 , 而SpringMVC给我们提供了一个过滤器 , 可以在web.xml中配置 . 修改了xml文件需要重启服务器!
<filter>
<filter-name>encoding</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>utf-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encoding</filter-name>
<url-pattern>
5. Json交互处理
5.1 Json概念
- JSON(JavaScript Object Notation, JS 对象标记) 是一种轻量级的数据交换格式,目前使用特别广泛。
- 采用完全独立于编程语言的文本格式来存储和表示数据。
- 简洁和清晰的层次结构使得 JSON 成为理想的数据交换语言
5.2 JSON 和 JavaScript 对象的关系
JSON 是 JavaScript 对象的字符串表示法,它使用文本表示一个 JS 对象的信息,本质是一个字符串。
var obj = {a: 'Hello', b: 'World'};
var json = '{"a": "Hello", "b": "World"}';
5.3 JSON 和 JavaScript 对象互转
- 要实现从JSON字符串转换为JavaScript 对象,使用 JSON.parse() 方法:
var obj = JSON.parse('{"a": "Hello", "b": "World"}');
- 要实现从JavaScript 对象转换为JSON字符串,使用 JSON.stringify() 方法:
var json = JSON.stringify({a: 'Hello', b: 'World'});
6. Jackson: Controller返回JSON数据
Jackson应该是目前比较好的json解析工具了
6.1 Jackson导入包 配置 依赖
Jackson导入包 配置 依赖
6.2 编写Controller分析代码
@Controller
public class UserController {
@RequestMapping("/json1")
@ResponseBody
public String json1() throws JsonProcessingException {
ObjectMapper mapper = new ObjectMapper();
User user = new User("秦疆1号", 3, "男");
String str = mapper.writeValueAsString(user);
return str;
}
}
1 发现出现了乱码问题,我们需要设置一下他的编码格式为utf-8,以及它返回的类型; 2 通过@RequestMaping的produces属性来实现,修改下代码
@RequestMapping(value = "/json1",produces = "application/json;charset
=utf-8")
6.3 返回json字符串统一解决
在类上直接使用 @RestController ,这样子,里面所有的方法都只会返回 json 字符串了,不用再每一个都添加@ResponseBody !我们在前后端分离开发中,一般都使用 @RestController ,十分便捷!
@RestController
public class UserController {
@RequestMapping(value = "/json1")
public String json1() throws JsonProcessingException {
ObjectMapper mapper = new ObjectMapper();
User user = new User("秦疆1号", 3, "男");
String str = mapper.writeValueAsString(user);
return str;
}
}
6.4 输出时间对象
解决方案:取消timestamps形式 , 自定义时间格式
@RequestMapping("/json4")
public String json4() throws JsonProcessingException {
ObjectMapper mapper = new ObjectMapper();
mapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS,
false);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
mapper.setDateFormat(sdf);
Date date = new Date();
String str = mapper.writeValueAsString(date);
return str;
}
|