Spring Boot. how to Pass Optional<> to an Entity Class

前端 未结 7 1642
予麋鹿
予麋鹿 2021-02-13 16:06

i am currently making a website using spring and i stumble upon this basic scenario that i don\'t have any idea on how to solve this specific code: Entity = Optional;

         


        
7条回答
  •  情深已故
    2021-02-13 16:49

    Try this, it works for me

    RoomEntity roomEntity = roomRepository.findById(roomId).orElse(null);

提交回复
热议问题