聊聊springmvc中controller的方法的参数注解方式
绪论
相信接触过springmvc的同学都知道,在springmvc的控制层中,我们在方法的参数中可以使用注解标识。比如下面例子:
public map<string, object> login(@pathvariable("loginparams") string loginparams)
@pathvariable注解就标识了这个参数是作为一个请求地址模板变量的(不清楚的同学可以先学习一下restful设计风格)。这些注解都是spring内置注解,那么 我们可不可以自定义注解来实现自己的业务逻辑处理呢? 答案是可以的,spring团队的一大设计哲学思想就是让自己的系统有无限可能性的拓展。 spring框架底层又是如何解析这些参数的注解的呢?
那么在学习自定义参数注解之前,我们先了解一下spring底层是怎么来解析这些注解参数的。实际上,这些处理过程是要涉及到配置文件的加载和解析以及一堆的各种处理,小弟功力尚浅,就分析不到那么多了,只是简单过一下。
内置参数注解的解析
下面,我们从源码角度来分析:
首先,sping定义了一个统一的方法参数注解解析接口handlermethodargumentresolver,所有方法参数解析类都需要实现这个接口,接口很简单,定义了两个方法:
public interface handlermethodargumentresolver { /** * 判断方法参数是否包含指定的参数注解 * 含有返回true,不含有返回false */ boolean supportsparameter(methodparameter parameter); /** * 在给定的具体的请求中,把方法的参数解析到参数值里面,返回解析到的参数值,没有返回null * 只有在supportsparameter返回true的时候,resolveargument方法才会执行 */ object resolveargument(methodparameter parameter, modelandviewcontainer mavcontainer, nativewebrequest webrequest, webdatabinderfactory binderfactory) throws exception; }
现在,带着大家看看@pathvariable参数注解的解析具体过程,源代码如下:
public class pathvariablemethodargumentresolver extends abstractnamedvaluemethodargumentresolver implements uricomponentscontributor { /* * 这里省略其它方法 * / @override public boolean supportsparameter(methodparameter parameter) { // 不含有pathvariable注解,返回false if (!parameter.hasparameterannotation(pathvariable.class)) { return false; } // pathvariable注解的参数类型是map类型 if (map.class.isassignablefrom(parameter.getparametertype())) { string paramname = parameter.getparameterannotation(pathvariable.class).value(); return stringutils.hastext(paramname); } return true; } // pathvariablemethodargumentresolver没有重写resolveargument,直接使用abstractnamedvaluemethodargumentresolver默认行为 /* * 如果supportsparameter返回true,在这里真正处理参数 * */ protected void handleresolvedvalue(object arg, string name, methodparameter parameter, modelandviewcontainer mavcontainer, nativewebrequest request) { string key = view.path_variables; int scope = requestattributes.scope_request; map<string, object> pathvars = (map<string, object>) request.getattribute(key, scope); if (pathvars == null) { pathvars = new hashmap<string, object>(); request.setattribute(key, pathvars, scope); } // 把参数的key-value放进请求域,也就是把值赋给了方法参数,比如请求路径是: api/v1/task/{id},方法参数@pathvariable("id") string taskid,那么此时name=taskid, org=id的值 // 当然,怎么把请求地址中对应的值获取出来,不在这篇博客的讨论范畴。大家只要记得参数注解是这样解析处理的就可以了 pathvars.put(name, arg); } }
abstractnamedvaluemethodargumentresolver的resolveargument方法如下
public final object resolveargument(methodparameter parameter, modelandviewcontainer mavcontainer, nativewebrequest webrequest, webdatabinderfactory binderfactory) throws exception { class<?> paramtype = parameter.getparametertype(); // 获取请求参数的key-value namedvalueinfo namedvalueinfo = getnamedvalueinfo(parameter); // 解析参数名 object arg = resolvename(namedvalueinfo.name, parameter, webrequest); if (arg == null) { if (namedvalueinfo.defaultvalue != null) { arg = resolvedefaultvalue(namedvalueinfo.defaultvalue); } else if (namedvalueinfo.required && !parameter.getparametertype().getname().equals("java.util.optional")) { handlemissingvalue(namedvalueinfo.name, parameter); } arg = handlenullvalue(namedvalueinfo.name, arg, paramtype); } else if ("".equals(arg) && namedvalueinfo.defaultvalue != null) { arg = resolvedefaultvalue(namedvalueinfo.defaultvalue); } // 数据绑定 if (binderfactory != null) { webdatabinder binder = binderfactory.createbinder(webrequest, null, namedvalueinfo.name); try { arg = binder.convertifnecessary(arg, paramtype, parameter); } catch (conversionnotsupportedexception ex) { throw new methodargumentconversionnotsupportedexception(arg, ex.getrequiredtype(), namedvalueinfo.name, parameter, ex.getcause()); } catch (typemismatchexception ex) { throw new methodargumenttypemismatchexception(arg, ex.getrequiredtype(), namedvalueinfo.name, parameter, ex.getcause()); } } /* * 最后的处理是交给handleresolvedvalue,handleresolvedvalue方法是抽象方法,我们回来看看一下pathvariablemethodargumentresolver的handleresolvedvalue方法是抽象方法的具体实现 * */ handleresolvedvalue(arg, namedvalueinfo.name, parameter, mavcontainer, webrequest); return arg; }
可以知道,@pathvariable标识的参数,会被对应参数解析器把对应值解析到一个map结构中保存到request scope。
总的来说,实现处理注解参数思路还是比较简单的,定义一个类实现handlermethodargumentresolver接口,在对应方法里面进行处理就可以了。接下来我们就来一次自定义注解参数解析的实战。
自定义注解参数解析演练
我们模拟一下获取当前任务信息。
首先我们定义一个注解
package top.mingzhijie.demo.springmvc.anntation; import java.lang.annotation.elementtype; import java.lang.annotation.retention; import java.lang.annotation.retentionpolicy; import java.lang.annotation.target; /** 代表当前任务 * @author wunanliang * @date 2017/10/21 * @since 1.0.0 */ @retention(retentionpolicy.runtime) @target(elementtype.parameter) public @interface currenttask { string value() default ""; }
接着模拟一个业务逻辑处理服务类
package top.mingzhijie.demo.springmvc.method.arguments.anntation; import top.mingzhijie.demo.springmvc.entity.task; import java.util.hashmap; import java.util.map; /** * 模拟任务业务类 * * @author wunanliang * @date 2017/10/21 * @since 1.0.0 */ public class taskservice { private static map<string, task> taskmap = new hashmap<string, task>(); static { taskmap.put("001", new task("task1", 10, true)); taskmap.put("002", new task("task2", 1, false)); taskmap.put("003", new task("task3", 20, false)); } public static task findtaskbyid(string taskid) { return taskmap.get(taskid); } }
编写任务类
package top.mingzhijie.demo.springmvc.entity; /** * @author wunanliang * @date 2017/10/21 * @since 1.0.0 */ public class task { private string name; private int resolvedcount; // 参与人数 private boolean allowstudent; public task(){} public task(string name, int resolvedcount, boolean allowstudent) { this.name = name; this.resolvedcount = resolvedcount; this.allowstudent = allowstudent; } public boolean isallowstudent() { return allowstudent; } public void setallowstudent(boolean allowstudent) { this.allowstudent = allowstudent; } public int getresolvedcount() { return resolvedcount; } public void setresolvedcount(int resolvedcount) { this.resolvedcount = resolvedcount; } public string getname() { return name; } public void setname(string name) { this.name = name; } @override public string tostring() { return "task{" + "name='" + name + '\'' + ", resolvedcount=" + resolvedcount + ", allowstudent=" + allowstudent + '}'; } }
编写注解参数处理类
package top.mingzhijie.demo.springmvc.method.arguments.anntation; import org.springframework.core.methodparameter; import org.springframework.web.bind.support.webdatabinderfactory; import org.springframework.web.context.request.nativewebrequest; import org.springframework.web.method.support.handlermethodargumentresolver; import org.springframework.web.method.support.modelandviewcontainer; import top.mingzhijie.demo.springmvc.anntation.currenttask; import top.mingzhijie.demo.springmvc.entity.task; /** * @author wunanliang * @date 2017/10/21 * @since 1.0.0 */ public class taskhandlermethodargumentresolver implements handlermethodargumentresolver { public boolean supportsparameter(methodparameter methodparameter) { boolean hasann = methodparameter.hasparameterannotation(currenttask.class); return hasann; } public object resolveargument(methodparameter methodparameter, modelandviewcontainer modelandviewcontainer, nativewebrequest nativewebrequest, webdatabinderfactory webdatabinderfactory) throws exception { task task = null; string curtaskid = (string) nativewebrequest.getparameter("cur_task_id"); if (curtaskid != null && !"".equals(curtaskid)) { task = taskservice.findtaskbyid(curtaskid); } if (task == null) { system.out.println("为找到对应的任务"); } else { if (task.isallowstudent()) { system.out.println("当前任务不允许学生参加哦"); } else { system.out.println("学生可以参加当前任务哦"); } } return task; } }
编写前端控制类
package top.mingzhijie.demo.springmvc.method.arguments.anntation; import org.springframework.web.bind.annotation.*; import top.mingzhijie.demo.springmvc.anntation.currenttask; import top.mingzhijie.demo.springmvc.entity.task; import java.util.hashmap; import java.util.map; /** * @author wunanliang * @date 2017/10/21 * @since 1.0.0 */ @restcontroller @requestmapping("/tasks") public class taskcontroller { // 这里使用@currenttask来表示task参数 @requestmapping(value = "/join", method = requestmethod.get) @responsebody public map<string, task> gjointask(@requestparam("cur_task_id") string taskid, @currenttask task task) { system.out.println(task); map<string, task> map = new hashmap<string, task>(); map.put("cur_task", task); return map; } }
配置文件配置注解参数解析bean
<mvc:annotation-driven> <mvc:argument-resolvers> <bean class="top.mingzhijie.demo.springmvc.method.arguments.anntation.taskhandlermethodargumentresolver"/> </mvc:argument-resolvers> </mvc:annotation-driven>
运行,输入地址 http://localhost:8888/demospringmvc/tasks/join?cur_task_id=001
获取到任务信息json数据:
{ "cur_task": { "name": "task1", "resolvedcount": 10, "allowstudent": true } }
可以看到,@currenttask标识的参数task,在方法中就可以获取到经过taskhandlermethodargumentresolver处理过的任务
使用场景
在我们web请求中,往往需要客户端待会token来进行身份验证,这样我们可以自定义参数注解来在指定的注解解析类里面来进行token的合法性的判断。这篇文章就到这里了~~
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: 基于mssql导mysql遇到的问题
推荐阅读
-
聊聊springmvc中controller的方法的参数注解方式
-
c#方法中调用参数的值传递方式和引用传递方式以及ref与out的区别深入解析
-
c#方法中调用参数的值传递方式和引用传递方式以及ref与out的区别深入解析
-
spring boot中controller的使用及url参数的获取方法
-
spring boot中controller的使用及url参数的获取方法
-
SpringMVC中控制器接收JSP页面表单的参数接收方式详解及细节注意(400错误)
-
JAVAEE——BOS物流项目11:在realm中授权、shiro的方法注解权限控制、shiro的标签权限控制、总结shiro的权限控制方式、权限管理
-
SpringMVC入门(二)—— 参数的传递、Controller方法返回值、json数据交互、异常处理、图片上传、拦截器
-
SpringMVC 页面传递参数到controller的五种方式
-
springmvc中接收页面参数传递的几种方式