Skip to content

Tag: java

How to copy object that has a list with BeanUtils?

I’m working on a multi maven modules and I want to copy from entity to model with BeanUtils, here what I tried: This is my entity (with getters/setter/noargs/allargs): and this is my model (DTO Model): This is the output I’m getting: The problem is that the fields get copied but the list does not …

how to decrypt using DatatypeConverter MD5 In JAVA?

Answer You can’t. That’s what hashing is about. This is not a API or library limitation but a mathematical one, which is there by design. You need to understand that hashing and encryption/ decryption are two completely different things (which are often used together). Hashing A hash, or to be pre…

How to print times (hh:mm) in a quarter-hour cycle?

I need to basically print every quarter-hour of the day from 00:00 to 23:45 (so 96 different times) in hh:mm format to create a html report. Is there a standard library to do that? Or another way? Answer Can be done using the java.time.LocalTime: It can also be done with a for loop, just consider that LocalTi…