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

前端 未结 7 1668
予麋鹿
予麋鹿 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:07

    The shortest way of doing this casting

    RoomEntity roomEntity = roomRepository.findById(roomId).get();
    

提交回复
热议问题