所以我开始深入研究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>
除{em> component-scan
中的 base-package 参数外,handlers.xml
和utility.xml
几乎相同
显然我做错了什么。 任何提示和建议将不胜感激。
编辑:
好的,所以我尝试将切入点更改为:
execution(* arbana.sneaky.racoon.utility.BasicStringOperations.trimLastChar(..))
目标是测试的实际方法而不是JUnit测试方法,显然方面适用于那种情况。
所以现在我的假设是JUnit和Spring Aspects不喜欢彼此。
现在我很好奇是否有办法解决这个问题。