只有高频的、重复的查询才有缓存的需求,比如:根据航班ID查询航班。一般系统不推荐使用结果缓存。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@SpringBootApplication
@EnableSwagger2
@EnableDiscoveryClient
@EnableCaching
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
package com.example.demo.service;
import com.example.demo.*;
import com.taocares.commons.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.*;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Optional;
@Service
@CacheConfig(cacheNames = "foo-cache")
public class FooService {
@Autowired
private FooRepository fooRepository;
@Cacheable
public Optional<FooDto> findById(Long fooId) {
Optional<Foo> foo = fooRepository.findById(fooId);
if (foo.isPresent()) {
return Optional.of(BeanUtils.copyProperties(foo.get(), FooDto.class));
} else {
return Optional.empty();
}
}
@CachePut(key = "#result.id")
public FooDto updateFoo(FooDto fooDto) {
Foo foo = BeanUtils.copyProperties(fooDto, Foo.class);
fooRepository.save(foo);
return BeanUtils.copyProperties(foo, FooDto.class);
}
@CacheEvict(allEntries = true)
public void batchUpdate(List<FooDto> fooDtos) {
// do something ...
}
}