先发现,无法正常创建bean
Error creating bean with name ‘dataSource’ defined in class path resource [applicationContext.xml]: BeanPostProcessor before instantiation of bean failed
在往下找发现报错,缺少aspectj
Caused by: java.lang.NoClassDefFoundError: org/aspectj/weaver/reflect/ReflectionWorld$ReflectionWorldException
解决方案:
pom.xml导入
<dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.8.4</version> </dependency>