美文网首页
LocalDateTime和Date互转

LocalDateTime和Date互转

作者: 姜小码 | 来源:发表于2016-07-16 23:02 被阅读274次
@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互转

      本文链接:https://www.haomeiwen.com/subject/dimujttx.html