Cannot resolve class or package 'springframework' less... (Ctrl+F1) Inspection info:Spring XML mode

Cannot resolve class or package ‘springframework’ less… (Ctrl+F1) Inspection info:Spring XML mode
其实这个问题是由于MySQL 这个jar 包依赖类型默认是runtime ,
也就是说只有运行时生效,所以虽然这里报错,但是不影响你代码运行。

解决方案: 在pom.xml中将runtime 修改为Compile 即可
Cannot resolve class or package 'springframework' less... (Ctrl+F1) Inspection info:Spring XML mode_第1张图片

你可能感兴趣的:(JavaWeb)