所以我开始深入研究 Spring AOP,并尝试使用注释创建一些基本方面,但由于某种原因它似乎没有触发。
这是我的方面:
@Component
@Aspect
public class TestScribe {
private Logger logger;
@Autowired
private LogHandler logHandler;
@PostConstruct
private void setup(){
logger = logHandler.getLogger(LogType.TEST);
}
@Pointcut("execution(* arbana.sneaky.racoon.utility.BasicStringOperationsTest.test_trimLastChar(..))")
public void testStart(){}
@Before("testStart()")
public void markTest() {
logger.info("Aspect happened!");
}
}
当我设置断点时setup()
,markTest()
我可以看到@PostConstruct方法setup()
被触发,但markTest()
没有。
这是我试图切入的 JUnit 测试用例:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"/arbana/sneaky/racoon/contexts/utility.xml"})
public class BasicStringOperationsTest {
@Autowired
private BasicStringOperations stringOperations;
@Test
public void test_trimLastChar() {
assertEquals("trimme", stringOperations.trimLastChar("trimmed"));
}
}
这是我的 bean 配置 XML (testing.xml):
<?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"
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/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
">
<aop:aspectj-autoproxy/>
<import resource="classpath:/arbana/sneaky/racoon/contexts/handlers.xml"/>
<context:component-scan base-package="arbana.sneaky.racoon.test"/>
</beans>
和几乎相同,只是handlers.xml
组件扫描中的基本包参数不同utility.xml
显然我做错了什么。任何提示和建议将不胜感激。
编辑 :
好的,所以我尝试将切入点更改为:
execution(* arbana.sneaky.racoon.utility.BasicStringOperations.trimLastChar(..))
针对正在测试的实际方法而不是 JUnit 测试方法,显然方面在这种情况下有效。
所以现在我的假设是 JUnit 和 Spring Aspects 彼此不喜欢。
现在我很好奇是否有办法解决这个问题。