Files
spring-security-series/Spring-Boot/spring-boot-ehcache/src/main/java/com/javadevjournal/service/CustomerService.java
2019-12-14 15:31:53 -08:00

44 lines
1.4 KiB
Java
Executable File

package com.javadevjournal.service;
import com.javadevjournal.data.Customer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List;
@Service
public class CustomerService {
private static final Logger LOG = LoggerFactory.getLogger(CustomerService.class);
@Cacheable(cacheNames = "customer",key="#id")
public Customer getCustomer(final Long id){
LOG.info("Returning customer information for customer id {} ",id);
Customer customer = new Customer();
customer.setCustomerId(id);
customer.setFirstName("Test");
customer.setLastName("User");
customer.setEmail("contact-us@javadevjournlal.com");
return customer;
}
@Cacheable(cacheNames = "customerList",key = "'customerList'")
public List<Customer> getCustomers(){
List<Customer> customers = new ArrayList<>();
LOG.info("Returning customer list");
for(int i=0; i< 4; i++){
Customer customer = new Customer();
customer.setCustomerId(Long.valueOf(i));
customer.setFirstName("FirstName"+i);
customer.setLastName("LastName"+i);
customer.setEmail("contact-us@javadevjournlal.com"+i);
customers.add(customer);
}
return customers;
}
}