错误信息如下:
UnsatisfiedDependencyException: Error creating bean with name 'com.atguigu.test.SpringTxTest': Unsatisfied dependency expressed through field 'studentService': No qualifying bean of type 'com.atguigu.service.StudentService' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
原因是写Java配置类的时候扫描路径写错了,刚开始写成了@Component("com.atguigu")
Java配置类文件的AOP扫描路径注解应该写成@ComponentScan("com.atguigu"),如下: