- XML code
<?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:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> <aop:config> <aop:aspect id="aspect1" ref="aspectTest"> <aop:before pointcut="execution(public String com.test.action.LoginAction.login(..))" method="before"/> </aop:aspect> </aop:config> <bean id="aspectTest" class="com.test.bean.AspectTest"/></beans>
我想在执行login()之前做一些处理
login()大致是这样的
- Java code
public String login() { System.out.println("aaa"); return SUCCESS; }
------解决方案--------------------
楼主好像你配置的有问题哦,你的aop:pointcut呢,aop:before写的也不对啊,给你一篇文章,研究一下:
http://pandonix.iteye.com/blog/336873
------解决方案--------------------
楼主还是多看些书吧 盲目的搞效率很低。