RZ
Size: a a a
RZ
R
K
R
K
R
List<Cpu> intel = cpuRepository.findByMakeEquals("Intel");
// intel = cpu(1)
Optional<Laptop> byId = laptopRepository.findById(l1.getId());
// byId = laptop(1)
byId.ifPresent(x -> System.out.println(x.getCpu()));
// byId = cpu(1)
Cpu cpu = intel.get(0);
System.out.println(cpu);
// byId = cpu(1)
System.out.println(cpu.getLaptops());
// []Вот как запускаю, смотрите пж уже часа 3 сижуRZ
R
R
R
RZ
R
R
R
AE
R
RZ
R