SpringMVC 传值绑定

https://www.cnblogs.com/best/tag/Spring%20MVC/

 

一. java后台@RequestParam的情况,前台

     var params = {            

                            name:"a",            

                            address:"b"

                         };

    1.  当contenetype为application/x-www-form-urlencoded的时候且data传json对象,此时type为POST或GET均可。后台用@RequestParam绑定

         $.ajax({

           type:"POST"或"GET"

           uri:"/home/index1"

           contenetype:"application/x-www-form-urlencoded;charset=utf-8"(默认就是此类型)

           data:params(json对象)

       });
 

     2. 当contenetype为application/json的时候且data传json对象,此时type只能GET。后台用@RequestParam绑定

      $.ajax({

           type:"GET"

           uri:"/home/index1"

           contenetype:"application/json;charset=utf-8"(默认就是此类型)

           data:params(json对象)

       }); 

 

二.java后台@RequestBody的情况,前台只能用POST不能用GET,

     a.前台传json串的时候后台用POJO对象接受或String类型接受,之后在把String的json串转程json对象即可

     b.前台传json对象的时候后台只能用Sting类型接受,传json对象的时候后台不能用POJO对象接受

    1.当contenetype为application/json的时候且data传json对象的字符串,此时type只能POST。后台用@RequestBody绑定

 

      $.ajax({

           type:"POST"

          uri:"/home/index1"

           contenetype:"application/json;charset=utf-8"(默认就是此类型)

           data:JSON.stringify(params)

       });

   2.针对1中的情况uri:"/home/index1?sex=boy"的情况后台可以@RequestBody和@RequestParam一起使用获取数据,此时RequestBody获取post中json字符串的数据,

RequestParam获取uti中?后面的数据

    

 

 

 

 

 

http://localohost:9090/ssm/home/12/index?name="a"&age=10

 

@PathVariable:URI Templ中的值,如12

 

@RequestParam:也是URI中的值,但是是request.getParameter("name")能获取到的。如name和age。能接受get和post

 

 如果:application/json;charset=utf-8"

get或post:http://localohost:9090/ssm/home/12/index?name="a"&age=10

如果是:application/x-www-form-urlencoded

  get:http://localohost:9090/ssm/home/12/index此时form表单会在页面显示
 

@RequestParam(name) String name,@RequestParam(id) int id,@RequestBody()Object obj  一起使用

  post:http://localohost:9090/ssm/home/12/index?name="a"&age=10  此时form表单也可以有input也会到后台去不会在页面显示

 

@RequestParam绑定application/json操作如下 GET方式

和下面一样只不过把data:JSON.stringify(saveDataAry)改成data:saveDataAry即可

 

@RequestBody:只接受POST的application/json和application/xml的数据。

所以只能用:

 

var saveDataAry=[];
            var data1={
                name:"aaaa",
                address:"beijing"
            };
            var data2={
                name:"bbbb",
                address:"shengyang"
            };
            saveDataAry.push(data1);
            saveDataAry.push(data2);
            $.ajax({
                headers:{
                  "Accept" : "application/json",
                  "Content-Type": "application/json;charset=utf-8"
                },
                type:'POST',
//                contentType:"application/json;charset=utf-8",
//                dataType: 'json',
                url:"<%=basePath%>/home/index3",
                data:JSON.stringify(saveDataAry),
                error:function (textStatus) {
                    alert("error:" + textStatus);
                },
                success:function (data) {
                    alert("name="+data.name+ "," + "address" + data.address);
                }
             });

 

注意一点的是get请求不用设置contenttype,因为contenttype是针对body的,既然body没了,contenttype自然没效果了。

http://blog.csdn.net/xcymorningsun/article/details/53019425

get:在head头部分,后台用@RequestParam获取

post:在body部分,后台用@RequestBody获取但是只能写一个@RequestBody。有多个对象可以封装程一个对象在@RequestBody

返回情况

http://www.cnblogs.com/CBDoctor/p/3672861.html

1.@RequestBody():不调转页面,不走页面解析器,直接把内容返回到当前页面,要求是json或xm,非html

2.String和ModeandViewL:不依赖请求的URL,可以自己定义调转页面。通过ModeMap控制数据

3.Mode,Map,ModeMap,void,返回的逻辑视图是:prefix+试图名称+suffix

 

 

1.web.xml 配置:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

    dispatcher

    class>org.springframework.web.servlet.DispatcherServletclass>

    

        加载/WEB-INF/spring-mvc/目录下的所有XML作为Spring MVC的配置文件

        contextConfigLocation

        /WEB-INF/spring-mvc/*.xml

    

    on-startup>1on-startup>

    dispatcher

    *.htm

 

  这样,所有的.htm的请求,都会被DispatcherServlet处理;

初始化 DispatcherServlet 时,该框架在 web 应用程序WEB-INF 目录中寻找一个名为[servlet-名称]-servlet.xml的文件,并在那里定义相关的Beans,重写在全局中定义的任何Beans,像上面的web.xml中的代码,对应的是dispatcher-servlet.xml;当然也可以使用元素,手动指定配置文件的路径;dispatcher-servlet.xml 配置:

复制代码

 1 
 2 
21     
24     
25    
26     
30 

复制代码

 

2.spring mvc处理方法支持如下的返回方式:ModelAndView, Model, ModelMap, Map,View, String, void

 

ModelAndView

 

Java代码 

  1.    
  2. @RequestMapping("/show1") 
  3. public ModelAndView show1(HttpServletRequest request, 
  4.            HttpServletResponse response) throws Exception { 
  5.        ModelAndView mav = new ModelAndView("/demo2/show"); 
  6.        mav.addObject("account", "account -1"); 
  7.        return mav; 
  8.    } 

通过ModelAndView构造方法可以指定返回的页面名称,也可以通过setViewName()方法跳转到指定的页面 , 使用addObject()设置需要返回的值,addObject()有几个不同参数的方法,可以默认和指定返回对象的名字。 调用addObject()方法将值设置到一个名为ModelMap的类属性,ModelMap是LinkedHashMap的子类, 具体请看类。

 

 

Model 是一个接口, 其实现类为ExtendedModelMap,继承了ModelMap类。

model.addAttribute("pojo", pojo);

Map 

 

Java代码 

  1. @RequestMapping("/demo2/show") 
  2.     public Map getMap() { 
  3.         Map map = new HashMap(); 
  4.         map.put("key1", "value-1"); 
  5.         map.put("key2", "value-2"); 
  6.         return map; 
  7.     } 

 

在jsp页面中可直通过${key1}获得到值, map.put()相当于request.setAttribute方法。 写例子时发现,key值包括 - . 时会有问题.

View 可以返回pdf excel等,暂时没详细了解。

 

 

String 指定返回的视图页面名称,结合设置的返回地址路径加上页面名称后缀即可访问到。

 

注意:如果方法声明了注解@ResponseBody ,则会直接将返回值输出到页面。 例如:

Java代码 

  1. @RequestMapping(value = "/something", method = RequestMethod.GET) 
  2. @ResponseBody 
  3. public String helloWorld()  { 
  4. return"Hello World"; 

上面的结果会将文本"Hello World "直接写到http响应流。

Java代码 

  1. @RequestMapping("/welcome") 
  2. public String welcomeHandler() { 
  3.   return"center"; 

对应的逻辑视图名为“center”,URL= prefix前缀+视图名称 +suffix后缀组成。
void  如果返回值为空,则响应的视图页面对应为访问地址

Java代码 

  1. @RequestMapping("/welcome") 
  2. publicvoid welcomeHandler() {} 

此例对应的逻辑视图名为"welcome"。

小结:

1.使用 String 作为请求处理方法的返回值类型是比较通用的方法,这样返回的逻辑视图名不会和请求 URL 绑定,具有很大的灵活性,而模型数据又可以通过 ModelMap 控制。 2.使用void,map,Model 时,返回对应的逻辑视图名称真实url为:prefix前缀+视图名称 +suffix后缀组成。 3.使用String,ModelAndView返回视图名称可以不受请求的url绑定,ModelAndView可以设置返回的视图名称。

 

 

 

Model model,HttpServletRequest request, ModelMap map声明变量

 

request.getSession().setAttribute("test", "haiwei2Session"); request.setAttribute("test", "haiwei1request"); map.addAttribute("test", "haiweiModelMap"); model.addAttribute("test", "haiweiModel");
我通过${test}这个方式取值,优先取Model和ModelMap的,Model和ModelMap是同一个东西,谁最后赋值的就取谁的,然后是request,最后是从session中获取

 

 第一个Controller:

[Java] view plaincopyprint?

  1. package com.minx.crm.web.controller;  
  2.   
  3. import org.springframework.stereotype.Controller;  
  4. import org.springframework.web.bind.annotation.RequestMapping;  
  5. @Controller  
  6. public class IndexController {  
  7.     @RequestMapping("/index")  
  8.     public String index() {  
  9.         return "index";  
  10.     }  
  11. }  
package com.minx.crm.web.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class IndexController {
    @RequestMapping("/index")
    public String index() {
        return "index";
    }
}

@Controller注解标识一个控制器,@RequestMapping注解标记一个访问的路径(/index.htm),return "index"标记返回视图(index.jsp);

注:如果@RequestMapping注解在类级别上,则表示一相对路径,在方法级别上,则标记访问的路径;

从@RequestMapping注解标记的访问路径中获取参数:

Spring MVC 支持RESTful风格的URL参数,如:

[Java] view plaincopyprint?

  1. @Controller  
  2. public class IndexController {  
  3.   
  4.     @RequestMapping("/index/{username}")  
  5.     public String index(@PathVariable("username") String username) {  
  6.         System.out.print(username);  
  7.         return "index";  
  8.     }  
  9. }  
@Controller
public class IndexController {

    @RequestMapping("/index/{username}")
    public String index(@PathVariable("username") String username) {
        System.out.print(username);
        return "index";
    }
}@PathVariable("username") String username) {
        System.out.print(username);
        return "index";
    }
}

在@RequestMapping中定义访问页面的URL模版,使用{}传入页面参数,使用@PathVariable 获取传入参数,即可通过地址:http://localhost:8080/crm/index/tanqimin.htm 访问;

根据不同的Web请求方法,映射到不同的处理方法:

使用登陆页面作示例,定义两个方法分辨对使用GET请求和使用POST请求访问login.htm时的响应。可以使用处理GET请求的方法显示视图,使用POST请求的方法处理业务逻辑;

[Java] view plaincopyprint?

  1. @Controller  
  2. public class LoginController {  
  3.     @RequestMapping(value = "/login", method = RequestMethod.GET)  
  4.     public String login() {  
  5.         return "login";  
  6.     }  
  7.     @RequestMapping(value = "/login", method = RequestMethod.POST)  
  8.     public String login2(HttpServletRequest request) {  
  9.             String username = request.getParameter("username").trim();  
  10.             System.out.println(username);  
  11.         return "login2";  
  12.     }  
  13. }  
@Controller
public class LoginController {
    @RequestMapping(value = "/login", method = RequestMethod.GET)
    public String login() {
        return "login";
    }
    @RequestMapping(value = "/login", method = RequestMethod.POST)
    public String login2(HttpServletRequest request) {
            String username = request.getParameter("username").trim();
            System.out.println(username);
        return "login2";
    }
}

在视图页面,通过地址栏访问login.htm,是通过GET请求访问页面,因此,返回登陆表单视图login.jsp;当在登陆表单中使用POST请求提交数据时,则访问login2方法,处理登陆业务逻辑;

防止重复提交数据,可以使用重定向视图:

[Java] view plaincopyprint?

  1. return "redirect:/login2"  
return "redirect:/login2"

可以传入方法的参数类型:

 

 

[Java] view plaincopyprint?

  1. @RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(HttpServletRequest request, HttpServletResponse response, HttpSession session) {  
  3.     String username = request.getParameter("username");  
  4.     System.out.println(username);  
  5.     return null;  
  6. }  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(HttpServletRequest request, HttpServletResponse response, HttpSession session) {
	String username = request.getParameter("username");
	System.out.println(username);
	return null;
}

 

可以传入HttpServletRequestHttpServletResponseHttpSession,值得注意的是,如果第一次访问页面,HttpSession没被创建,可能会出错;

其中,String username = request.getParameter("username");可以转换为传入的参数:

 

[Java] view plaincopyprint?

  1. @RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(HttpServletRequest request, HttpServletResponse response, HttpSession session,@RequestParam("username") String username) {  
  3.     String username = request.getParameter("username");  
  4.     System.out.println(username);  
  5.     return null;  
  6. }  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(HttpServletRequest request, HttpServletResponse response, HttpSession session,@RequestParam("username") String username) {
	String username = request.getParameter("username");
	System.out.println(username);
	return null;
}

 

使用@RequestParam 注解获取GET请求或POST请求提交的参数;

获取Cookie的值:使用@CookieValue :

获取printwriter:

可以直接在Controller的方法中传入PrintWriter对象,就可以在方法中使用:

 

[Java] view plaincopyprint?

  1. @RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(PrintWriter out, @RequestParam("username") String username) {  
  3.     out.println(username);  
  4.     return null;  
  5. }  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(PrintWriter out, @RequestParam("username") String username) {
	out.println(username);
	return null;
}@RequestParam("username") String username) {
	out.println(username);
	return null;
}

 

 

获取表单中提交的值,并封装到POJO中,传入Controller的方法里:

POJO如下(User.java):

 

[Java] view plaincopyprint?

  1. public class User{  
  2.     private long id;  
  3.     private String username;  
  4.     private String password;  
  5.   
  6.     …此处省略getter,setter...  
  7. }  
public class User{
	private long id;
	private String username;
	private String password;

	…此处省略getter,setter...
}

 

 

通过表单提交,直接可以把表单值封装到User对象中:

 

[Java] view plaincopyprint?

  1. @RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(PrintWriter out, User user) {  
  3.     out.println(user.getUsername());  
  4.     return null;  
  5. }  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(PrintWriter out, User user) {
	out.println(user.getUsername());
	return null;
}

 

 

可以把对象,put 入获取的Map对象中,传到对应的视图:

 

 

[Java] view plaincopyprint?

  1. @RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(User user, Map model) {  
  3.     model.put("user",user);  
  4.     return "view";  
  5. }  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(User user, Map model) {
	model.put("user",user);
	return "view";
}

 

在返回的view.jsp中,就可以根据key来获取user的值(通过EL表达式,${user }即可);

Controller中方法的返回值:

void:多数用于使用PrintWriter输出响应数据;

String 类型:返回该String对应的View Name;

任意类型对象:

返回ModelAndView:

自定义视图(JstlView,ExcelView):

 拦截器(Inteceptors):

 

 

[Java] view plaincopyprint?

  1. public class MyInteceptor implements HandlerInterceptor {  
  2.     public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object o)   
  3.         throws Exception {  
  4.         return false;  
  5.     }  
  6.     public void postHandle(HttpServletRequest request, HttpServletResponse response, Object o, ModelAndView mav)   
  7.         throws Exception {  
  8.     }  
  9.     public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object o, Exception excptn)   
  10.         throws Exception {  
  11.     }  
  12. }  
public class MyInteceptor implements HandlerInterceptor {
	public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object o) 
		throws Exception {
		return false;
	}
	public void postHandle(HttpServletRequest request, HttpServletResponse response, Object o, ModelAndView mav) 
		throws Exception {
	}
	public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object o, Exception excptn) 
		throws Exception {
	}
}

 

拦截器需要实现HandleInterceptor接口,并实现其三个方法:

preHandle:拦截器的前端,执行控制器之前所要处理的方法,通常用于权限控制、日志,其中,Object o表示下一个拦截器;

postHandle:控制器的方法已经执行完毕,转换成视图之前的处理;

afterCompletion:视图已处理完后执行的方法,通常用于释放资源;

在MVC的配置文件中,配置拦截器与需要拦截的URL:

[XML] view plaincopyprint?

  1.   
  2.       
  3.           
  4.           
  5.       
  6.   

	
		
		
	

 

国际化:

在MVC配置文件中,配置国际化属性文件:

 

[XML] view plaincopyprint?

  1.     class="org.springframework.context.support.ResourceBundleMessageSource"  
  2.     p:basename="message">  
  3.   

 

那么,Spring就会在项目中搜索相关的国际化属性文件,如:message.properties、message_zh_CN.properties

在VIEW中,引入Spring标签:<%@taglib uri="http://www.springframework.org/tags" prefix="spring" %>,使用调用,即可;

如果一种语言,有多个语言文件,可以更改MVC配置文件为:

 

[XML] view plaincopyprint?

  1.   
  2.       
  3.           
  4.             message01  
  5.             message02  
  6.             message03  
  7.           
  8.       
  9.   

 

 

 

 

 

你可能感兴趣的:(SpringMVC 传值绑定)