Error creating bean with name ‘dataSource’ defined in class path resource...

今天SSM整合的时候出现了这个问题,真的是头大。
Error creating bean with name ‘dataSource’ defined in class path resource..._第1张图片

Error creating bean with name ‘dataSource’ defined in class path resource [spring/spring.xml]: Initialization of bean failed; nested exception is java.lang.IllegalArgumentException: warning no match for this type name: com.zxb.service [Xlint:invalidAbsoluteTypeName]

根据异常信息来看,先说我的dataSource出了问题,但是这我核对了很多遍,也单独测试过,并不是这个问题。
重点是在warning no match for this type name: com.zxb.service [Xlint:invalidAbsoluteTypeName],什么Xnlin:invalidAbouluteTypeName,说我无效的绝对类型名称。查了半天,发现是自己的切入点表达式写错了,

expression="execution(* com.zxb.service.*(..))

少写了一级,应该为

expression="execution(* com.zxb.service.*.*(..))

总结:出现Xlint:invalidAbsoluteTypeName这玩意,一般就是切入点表达式出错了。

你可能感兴趣的:(异常,spring,bug,java)