SSM框架遇到异常Error creating bean with name 'org.springframework.cache.interceptor.CacheInterceptor#0'

昨天搭ssm框架时,遇到上面的异常,一脸懵比,我没用过这个bean啊,后来度娘找到了解决方法,是mvc的配置文件

,idea自动导入命名空间时出现了问题,导成了↓(含 cache) 这种,删除掉重新导入就行了。

 
  1. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

  2. xmlns:context="http://www.springframework.org/schema/context"

  3. xmlns:mvc="http://www.springframework.org/schema/cache"

  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd">

 

正确的命名空间是↓ 这种:

你可能感兴趣的:(自学java)