天天看点

使用Spring AOP预处理Controller的参数

实际编程中,可能会有这样一种情况,前台传过来的参数,我们需要一定的处理才能使用,比如有这样一个<code>Controller</code>

前台传过来的<code>startDate</code>和<code>endDate</code>是两个日期,实际使用中我们需要将之转换为两个日期对应的当天11点,如果只有这么一个类的话,我们是可以直接在方法最前面处理就可以了

但是,还有下面两个类具有同样的业务逻辑

当然也可以写两个util方法,分别处理<code>startDate</code>和<code>endDate</code>,但是为了让<code>Controller</code>看起来更干净一些,我们还是用AOP来实现吧,顺便为AOP更复杂的应用做做铺垫

本应用中使用Configuration Class来进行配置,主配置类如下:

下面新建一个Aspect类,代码如下

分别解释一下上面各个地方的意思,标号与语句之后的注释一致

表示这是一个切面类

表示这个类是一个配置类,在<code>ApplicationContext</code>启动时会加载配置,将这个类扫描到

定义一个切点,<code>execution(* com.ronnie.controller.*.list*(java.util.Date,java.util.Date))</code>表示任意返回值,在<code>com.ronnie.controller</code>包下任意类的以list开头的方法,方法带有两个Date类型的参数,<code>args(startDate,endDate)</code>表示需要Spring传入这两个参数

定义切点的名称

配置环绕通知

<code>ProceedingJoinPoint</code>会自动传入,用于处理真实的调用

获取参数,下面代码是修改参数

使用修改过的参数调用目标类

更多可参考

<a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/html/aop.html">http://docs.spring.io/spring/docs/current/spring-framework-reference/html/aop.html</a>

<a href="http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/">http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/</a>

http://blog.csdn.net/ro_wsy/article/details/50858810