摘要:
通常我们想获取yyyy-MM-dd HH:mm:ss 的标准时间串,可能使用new Date() 并且使用SimpleDateFormat格式化,但是线程不安全. 推荐如下方式 String timeStr1=LocalDateTime.now().format(DateTimeFormatter. 阅读全文
摘要:
很多时候我们习惯在数据库中使用update_user类似的字段进行命名,而我们又希望在使用Mybatis,进行实体类映射的时候能够自动转换,则需要在mybati全局配置文件中开启"驼峰命名转换"(mapUnderscoreToCamelCase) SSM: <settings> <setting n 阅读全文