BAEL - 2251

Removed Spring boot dependency.
This commit is contained in:
TINO
2018-10-28 19:52:59 +03:00
parent e2aad41b78
commit 0d4fa7c748
4 changed files with 108 additions and 49 deletions
@@ -1,17 +0,0 @@
package org.baeldung.caching.eviction;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableCaching
@EnableScheduling
public class CacheEvictionMain {
public static void main(String[] args) {
SpringApplication.run(CacheEvictionMain.class, args);
}
}
@@ -1,4 +1,4 @@
package org.baeldung.caching.eviction.cotrollers;
package org.baeldung.caching.eviction.controllers;
import org.baeldung.caching.eviction.service.CachingService;
import org.springframework.beans.factory.annotation.Autowired;