------------吾亦无他,唯手熟尔,谦卑若愚,好学若饥-------------

在处理方法中,参数写上之后,只要符合特定规则,就可以自动装配

首先

其次是:自定义的参数的自动装配:

案例如下:我的相同的配置文件就在下面不重复展示,不同的就展示一下:

第一种,零散参数自动装配:

  在处理器中定义方法:

package cn.dawn.day11autowire;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam; /**
* Created by Dawn on 2018/3/24.
*/
/*注解定义处理器*/
@Controller
/*定义处理器访问路径*/
@RequestMapping("/user")
public class MyAController { /*第一种零散根据name*/
@RequestMapping("/doLogin")
public String doLogin(String username,String password, Model model) throws Exception {
model.addAttribute("username",username);
System.out.println(username);
System.out.println(password);
return "success";
} }

  在自定义配置文件中:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!--包扫描器-->
<context:component-scan base-package="cn.dawn.day11autowire"></context:component-scan>
<!--视图解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/"></property>
<property name="suffix" value=".jsp"></property>
</bean> </beans>

  xml配置文件中只需要包扫描器和视图解析器

  jsp页面:

<%@ page  pageEncoding="UTF-8" contentType="text/html;charset=UTF-8" language="java" isELIgnored="false"  %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h2>登录</h2>
<form action="${pageContext.request.contextPath}/user/doLogin" method="post">
<%--第一种自动装配零散参数--%>
用户名:<input name="username">
<input type="submit" value="登录"/>
</form>
</body>
</html>

  第二个jsp页面:success.jsp

<%@ page language="java" pageEncoding="utf-8" isELIgnored="false" %>
<html>
<body>
<%--<img src="data:image/1.jpg">--%>
<h2>Success!</h2>
<p>${username}</p>
</body>
</html>

  在web.xml中需要将指定的xml文件改成现在的即可

第二种:当写前台提交的name的属性名和实体类字段名或者参数名的不是一个人,有可能出现不一致,怎么解决

  处理方法:

    /*第二种零散参数name不一致*/
@RequestMapping("/doLoginBie")
public String doLoginBie(@RequestParam("uname") String username, String password, Model model) throws Exception {
model.addAttribute("username",username);
System.out.println(username);
System.out.println(password);
return "success";
}

  form表单中的值,记得改action指向的地址,改为新的处理方法

    <%--第二种自动装配零散参数  别名--%>
用户名:<input name="uname">

  第二种用到了@RequestParam("xxx")的这个注解

第三种:对象参数自动装配:只要表单里的name属性与对象的字段对应,就可以自动装配

  此处我将最终版实体类对象发上来(因为案例全做完才写的博客,不好删减):UserInfo实体类:

package cn.dawn.day11autowire;

import java.util.List;

/**
* Created by Dawn on 2018/3/26.
*/
public class UserInfo {
private String username;
private String password; private Car car; private List<Girls> girlsList; @Override
public String toString() {
return "UserInfo{" +
"username='" + username + '\'' +
", password='" + password + '\'' +
", car=" + car +
", girlsList=" + girlsList +
'}';
} public List<Girls> getGirlsList() {
return girlsList;
} public void setGirlsList(List<Girls> girlsList) {
this.girlsList = girlsList;
} public Car getCar() {
return car;
} public void setCar(Car car) {
this.car = car;
} public String getUsername() {
return username;
} public void setUsername(String username) {
this.username = username;
} public String getPassword() {
return password;
} public void setPassword(String password) {
this.password = password;
}
}

  第三个案例只用到了前俩个字段,我们看一下jsp中的form中的内容:记得改action指向的地址,改为新的处理方法

    用户名:<input name="username">
密码:<input name="password">

第四种:当有域属性的时候怎么办?

  用到了UserInfo的car这个字段,所以,建一个Car的实体类:

package cn.dawn.day11autowire;

/**
* Created by Dawn on 2018/3/26.
*/
public class Car {
private String type; @Override
public String toString() {
return "Car{" +
"type='" + type + '\'' +
'}';
} public String getType() {
return type;
} public void setType(String type) {
this.type = type;
}
}

  处理方法如下:

    /*第三种对象参数传*/
@RequestMapping("/doLoginObject")
public String doLoginObject(UserInfo info, Model model) throws Exception {
model.addAttribute("username",info.getUsername());
System.out.println(info);
return "success";
}

  jsp页面from表单中的如下:action指向新的处理方法地址:

    用户名:<input name="username">
密码:<input name="password">
<%--第四种带域属性--%>
车:<input name="car.type">

  这儿需注意的是car.type这个写法

第五种:集合自动装配

  在实体类中用到了girlsList这个对象List集合字段:所以我们建一个Girls表:

package cn.dawn.day11autowire;

/**
* Created by Dawn on 2018/3/26.
*/
public class Girls {
private String cool; @Override
public String toString() {
return "Girls{" +
"cool='" + cool + '\'' +
'}';
} public String getCool() {
return cool;
} public void setCool(String cool) {
this.cool = cool;
}
}

  处理方法如下:

    /*第五种对象携带集合对象参数传*/
@RequestMapping("/doLoginObjectList")
public String doLoginObjectList(UserInfo info, Model model) throws Exception {
model.addAttribute("username",info.getUsername());
System.out.println(info);
return "success";
}

  form表单内容如下:action指向新地址:

    用户名:<input name="username">
密码:<input name="password">
车:<input name="car.type">
<%--第五种带List集合--%>
女1:<input name="girlsList[0].cool">
女2:<input name="girlsList[1].cool">
<input type="submit" value="登录"/>

第六种:路径参数自动装配:是可以通过占位的方式来写的:

  处理方法如下:

    /*第六种路径参数传法1*/
@RequestMapping("/doPathVariable01/{uname}")
public String doPathVariable01(@PathVariable("uname") String username, Model model) throws Exception {
model.addAttribute("username",username);
System.out.println(username);
return "success";
}

  URL访问只需要在处理器方法之后加           /值      就可以自动装配

  用到了注解@PathVariable()和@RequestMapping中的{占位符}

延伸出来一个问题:如果form传过来的name值和action访问的Url地址中占位的那个参数一样,会出现什么

第七种:

  处理器方法:

    /*第七种路径参数传法2*/
@RequestMapping("/doPathVariable02/{username}")
public String doPathVariable02(@PathVariable String username, Model model) throws Exception {
model.addAttribute("username",username);
System.out.println(username);
return "success";
}

  jsp页面:

<%@ page  pageEncoding="UTF-8" contentType="text/html;charset=UTF-8" language="java" isELIgnored="false"  %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h2>登录</h2>
<form action="${pageContext.request.contextPath}/user/doPathVariable02/happy" method="post"> 用户名:<input name="username"> <input type="submit" value="登录"/>
</form>
</body>
</html>

  结果肯定是拿到URL里面的那个值

延伸出来一个问题:传中文会乱码,怎么办?看下篇博客

SSM-SpringMVC-18:SpringMVC中参数自动装配的更多相关文章

  1. Spring中的自动装配

    src\dayday\Person.java package dayday;/** * Created by I am master on 2016/11/28. */public class Per ...

  2. spring第一课,beans配置(中)——自动装配

    •Spring IOC 容器可以自动装配 Bean. 需要做的仅仅是在 <bean> 的 autowire 属性里指定自动装配的模式 •byType(根据类型自动装配): 若 IOC 容器 ...

  3. Spring中类型自动装配--byType

    在Spring中,“类型自动装配”的意思是如果一个bean的数据类型与其它bean属性的数据类型相同,将自动兼容装配它. 例如,一个“persion” bean 公开以“ability”类数据类型作为 ...

  4. MVC参数自动装配

    在拿到一个类型的所有属性以及字段的描述信息后,就可以通过循环的方式,根据这些数据成员的名字去QueryString,Form,Session,Cookie读取所需的数据了. 就是遍历参数,然后用反射遍 ...

  5. Spring boot 梳理 - 在bean中使用命令行参数-自动装配ApplicationArguments

    If you need to access the application arguments that were passed to SpringApplication.run(…​), you c ...

  6. SSM框架的sql中参数注入(#和$的区别)

    <select id="findUsersByUserName2" resultType="java.util.Map" parameterType=&q ...

  7. 切记切记:Spring配置文件中,Component-scan无法扫描到的类中的自动装配对象无法被调用,报空指针错误。

    Spring单例注入,单例对象可设置成Spring元件. 只有Spring的元件中@Autowired才有用,在普通类中@Autowired虽然不会编译报错,但运行时会报空指针错误.

  8. Spring学习--xml 中 Bean 的自动装配

    Spring IOC 容器可以自动装配 Bean. 只要在 <bean> 的 autowire 属性里指定自动装配的模式. byName(根据名称自动装配):必须将目标 Bean 的名称和 ...

  9. SpringBoot启动代码和自动装配源码分析

    ​ 随着互联网的快速发展,各种组件层出不穷,需要框架集成的组件越来越多.每一种组件与Spring容器整合需要实现相关代码.SpringMVC框架配置由于太过于繁琐和依赖XML文件:为了方便快速集成第三 ...

随机推荐

  1. git remote

    在git里,服务器上的仓库在本地称之为remote. 直接clone一个仓库: $: git clone git@search.ued.taobao.net:projects/search.git 另 ...

  2. VirtualBox安装RHEL之后配置桥接网络

    VirtualBox安装RHEL之后配置桥接网络 1 如果主机是Intel (R) Ethernet Connection I217-LM上网的: 2 如果主机是无线上网的, 如ipconfig显示如 ...

  3. ssh命令大全

    常用格式:ssh [-l login_name] [-p port] [user@]hostname 更详细的可以用ssh -h查看. 举例 不指定用户: ssh 192.168.0.11 指定用户: ...

  4. Linux下的 .o、.a、.so文件

    http://blog.sina.com.cn/s/blog_656681710100qzmy.html 工程里很多函数只是有声明,找不到实现的代码.因为那些实现代码已经编译成库所以看不见,我所看见的 ...

  5. HBase行锁

    1 行锁简介 在事务特性方面,hbase只支持单row的事务,不能保证跨row(cross-row)的事务.hbase通过行锁来实现单row事务.客户端进行操作时,可以显式对某一个行加锁,但是大部分情 ...

  6. objective-c中@autoreleasepool的用法

    objc中关于自动释放池,有两种语法,一种old-fashioned是: NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; //d ...

  7. openresty+websocket+redis simple chat

    openresty 很早就支持websocket了,但是早期的版本cosocket是单工的,处理起来比较麻烦参见邮件列表讨论 websocket chat,后来的版本cosocket是双全工的,就可以 ...

  8. Java继承与多态

    感慨一下,到了现在感觉Java里面很多东西都是模模糊糊,不能这样了,一点点解决吧.今天看了继承与多态的一些内容,感觉看得很浅,先写下来,算是巩固,如果后面看到更好的内容,再慢慢加上去. 继承与多态,他 ...

  9. Android性能优化之UI渲染性能优化

    版权声明:本文出自汪磊的博客,未经作者允许禁止转载. 本篇博客主要记录一些工作中常用的UI渲染性能优化及调试方法,理解这些方法对于我们编写高质量代码也是有一些帮助的,主要内容包括介绍CPU,GPU的职 ...

  10. 解决ecshop3.6 H5版本公告页面为空的修改办法

    ecshop3.6公告页面打开如下,页面完全无效果,如下图. 经过简单美化后,有返回按钮,页面加以美化.如下图. 是不是要好看多了.简单修改几步即可. 修改文件 \appserver\resource ...