LocalDateTime和Date互转

@Override
    Date convertToDatabaseColumn(LocalDateTime attribute) {
        if (attribute) {
            return Date.from(attribute.atZone(ZoneId.systemDefault()).toInstant())
        }
        return null
    }

    @Override
    LocalDateTime convertToEntityAttribute(Date dbData) {

        if (dbData) {
            LocalDateTime.ofInstant(dbData.toInstant(), ZoneId.systemDefault())
        }
        return null
    }

你可能感兴趣的:(LocalDateTime和Date互转)