maven spring无法注入,报空指针
发布网友
发布时间:2022-04-22 20:33
我来回答
共1个回答
热心网友
时间:2023-09-18 13:05
我猜测可能是scope的取值问题;
runtime (运行时范围)
runtime 依赖在运行和测试系统的时候需要,但在编译的时候不需要。比如,你可能在编译的时候只需要JDBC API JAR,而只有在运行的时候才需要JDBC
驱动实现。
将runtime,改为compile ,或者将<scope>runtime</scope> 这一行注释掉,试一下。