Springboot and Ehcache - MultiCacheException
问题 I'm trying to add caching to a springboot application and I am running into an issue where a org.ehcache.jsr107.MultiCacheException exception is being thrown during startup. I am using the following ( all loaded via Maven pom file): Springboot 1.5.5, Ehcache 3.3.1, Javax cache 1.0.0 My SpringBootApplication looks like this: @SpringBootApplication @EnableCaching public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } } I