类名更改
parent
4989a4079f
commit
0d3a168645
|
@ -38,7 +38,10 @@ public class RunnerAfter implements ApplicationRunner {
|
||||||
public void run(ApplicationArguments args) throws Exception {
|
public void run(ApplicationArguments args) throws Exception {
|
||||||
log.info("启动:初始化车辆数据到Redis");
|
log.info("启动:初始化车辆数据到Redis");
|
||||||
List<Car> carList = vehicleMapper.selectVehicleInfoList(null);
|
List<Car> carList = vehicleMapper.selectVehicleInfoList(null);
|
||||||
Map<String, Car> collect = carList.stream().collect(Collectors.toMap(Car::getCarVin, car -> car));
|
Map<String, Car> collect =
|
||||||
|
carList.stream().collect(
|
||||||
|
Collectors.toMap(
|
||||||
|
Car::getCarVin, car -> car));
|
||||||
redisTemplate.opsForHash().putAll(VehicleConstant.VEHICLE_INFO_MAP, collect);
|
redisTemplate.opsForHash().putAll(VehicleConstant.VEHICLE_INFO_MAP, collect);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue