Skip to content

Tag: java

Stream API how to modify key and value in a map?

I have a String – Array map that looks like this What I need to do is Create a new map, where key – only numbers extracted from String like this ( key -> key.replaceAll(“\D+”,””); Value – first value from array like this value -> value[0]; Filter an array so tha…

Alternative to using deprecated save method in hibernate

I am using the following code to save a person object into the database: I see that the save method is deprecated. What’s the alternative approach that we are supposed to use? Answer save() is deprecated since Hibernate 6.0. The javadoc suggests to use persist() instead. Deprecated. use persist(Object) …

Invalid property ‘projection’ of bean class

Hi I need a little help with my code. I tried solutions online but I couldn’t fix my bug. I working in java and spring with mysql and tymeleaf. My error is short: Invalid property ‘projection’ of bean class [com.bakulic.CinemaTicketShop.model.dto.requests.CreateOrUpdateProjectionDTO]: Bean p…