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

前端 未结 7 1641
予麋鹿
予麋鹿 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 17:05

    As @kaush-athukorala said, you need just add .get()at the end of RoomEntity roomEntity = roomRepository.findById(roomId); It works

    You'll have RoomEntity roomEntity = roomRepository.findById(roomId).get();

提交回复
热议问题