This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Service | |
public class FacebookLookupService { | |
private static final Logger LOGGER = LoggerFactory.getLogger(FacebookLookupService.class); | |
private RestTemplate restTemplate; | |
@Autowired | |
public FacebookLookupService(RestTemplate restTemplate) { | |
this.restTemplate = restTemplate; | |
} | |
@Cacheable("pages") | |
public Page findPage(String page) { | |
LOGGER.info("calling findPage with {}", page); | |
return restTemplate.getForObject("http://graph.facebook.com/" + page, Page.class); | |
} | |
} |
In this simple example the service is exposed via a Spring MVC controller as seen below, where we also measure how long it takes to call the service method.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RequestMapping(method = RequestMethod.GET) | |
public @ResponseBody Page lookup(@RequestParam String name) { | |
long start = System.currentTimeMillis(); | |
Page page = facebook.findPage(name); | |
long elapsed = System.currentTimeMillis() - start; | |
page.setLookupTime(elapsed); | |
return page; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn clean install | |
java -jar target/spring-caching-1.0-SNAPSHOT.jar |
Now, in another terminal let's call the service couple of times with the same name.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
localhost:~ zoltan$ curl localhost:8080/lookup?name=backbase | |
{"name":"Backbase","website":"http://www.backbase.com/","lookupTime":90}localhost:~ zoltan$ curl localhost:8080/lookup?name=backbase | |
{"name":"Backbase","website":"http://www.backbase.com/","lookupTime":62}localhost:~ zoltan$ curl localhost:8080/lookup?name=backbase | |
{"name":"Backbase","website":"http://www.backbase.com/","lookupTime":65}localhost:~ zoltan$ curl localhost:8080/lookup?name=backbase | |
{"name":"Backbase","website":"http://www.backbase.com/","lookupTime":70}localhost:~ zoltan$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Configuration | |
@EnableCaching | |
@Profile("ehcache") | |
public class EhCacheConfiguration { | |
@Bean | |
EhCacheCacheManager ehCacheCacheManager() { | |
return new EhCacheCacheManager(ehCacheManagerFactoryBean().getObject()); | |
} | |
@Bean | |
EhCacheManagerFactoryBean ehCacheManagerFactoryBean() { | |
EhCacheManagerFactoryBean ehCacheManagerFactoryBean = new EhCacheManagerFactoryBean(); | |
ehCacheManagerFactoryBean.setConfigLocation(new ClassPathResource("ehcache.xml")); | |
return ehCacheManagerFactoryBean; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar target/spring-caching-1.0-SNAPSHOT.jar --spring.profiles.active=ehcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
localhost:~ zoltan$ curl localhost:8080/lookup?name=backbase | |
{"name":"Backbase","website":"http://www.backbase.com/","lookupTime":572}localhost:~ zoltan$ curl localhost:8080/lookup?nam=backbase | |
{"name":"Backbase","website":"http://www.backbase.com/","lookupTime":1}localhost:~ zoltan$ curl localhost:8080/lookup?name=backbase | |
{"name":"Backbase","website":"http://www.backbase.com/","lookupTime":0}localhost:~ zoltan$ curl localhost:8080/lookup?name=backbase | |
{"name":"Backbase","website":"http://www.backbase.com/","lookupTime":1}localhost:~ zoltan$ curl localhost:8080/lookup?name=backbase | |
{"name":"Backbase","website":"http://www.backbase.com/","lookupTime":0}localhost:~ zoltan$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Configuration | |
@EnableCaching | |
@Profile("hazelcast") | |
public class HazelcastConfiguration { | |
@Bean | |
HazelcastCacheManager hazelcastcacheManager() throws Exception { | |
return new HazelcastCacheManager(hazelcastInstance()); | |
} | |
@Bean | |
HazelcastInstance hazelcastInstance() throws Exception { | |
return Hazelcast.newHazelcastInstance(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar target/spring-caching-1.0-SNAPSHOT.jar --spring.profiles.active=hazelcast --server.port=8081 | |
java -jar target/spring-caching-1.0-SNAPSHOT.jar --spring.profiles.active=hazelcast --server.port=8082 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
localhost:~ zoltan$ curl localhost:8082/lookup?name=google | |
{"name":"Google","website":"www.google.com","lookupTime":132}localhost:~ zoltan$ curl localhost:8081/lookup?name=google | |
{"name":"Google","website":"www.google.com","lookupTime":3}localhost:~ zoltan$ |