CacheManager No Bean Found - Not Trying to setup any Cache

后端 未结 4 624
故里飘歌
故里飘歌 2021-02-05 19:02

I\'m getting a no CacheManager bean found... But i have not tried to do anything with CacheManager!

Here\'s my error!

org.springframework.beans.factory.B         


        
4条回答
  •  春和景丽
    2021-02-05 19:52

    I had the same problem, As tehras said, if you use Intellij IDEA and use , then it will become ****/cache namespace, so change it to tx namespace to fix it.

    xmlns:tx="http://www.springframework.org/schema/tx"

    and in xsi:schemaLocation, find **/schema/cache and replace it with

    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd

    Restart your project and it will be ok.

提交回复
热议问题