服务器之家

服务器之家 > 正文

springboot pojo对象日期属性的问题

时间:2022-02-28 00:28     来源/作者:1251073528

pojo 对象日期属性

FeignClient 日期属性与pojo保持一直,使用Date类型;

pojo 属性值添加注解JsonFormat,前端拿到的属性为格式化之后的值。

@JsonFormat(timezone = DateUtils.TIMEZONE, pattern = DateUtils.DATE_TIME_FORMATE)
private Date date;

 

pojo 默认值设置

我们有时需要给POJO设置默认值

pojo设置(推荐)

1、User

package com.xxx.firstboot.domain;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class User {
  private int id;
  private String username = "";//设置默认值
  private String password = "";//设置默认值
}

2、UserController

  @ApiOperation("添加用户/测试POJO默认值")
  @RequestMapping(value="/addUserWithNoParam",method=RequestMethod.POST)
  public boolean addUserWithNoParam() {
      return userService.addUserWithNoParam(new User());//只新建,不设值
  }

3、UserService

  public boolean addUserWithNoParam(User user){
      return userDao.insertUserWithUserParam(user)>0?true:false;
  } 

4、UserDao

  public int insertUserWithUserParam(User user){
      return userMapper.insertUserWithUserParam(user);
  }

5、UserMapper

  @Insert("INSERT INTO tb_user(username, password) VALUES(#{username},#{password})")
  public int insertUserWithUserParam(User user);

测试:查看数据库

springboot pojo对象日期属性的问题

如果数据库也设置了默认值,如下

springboot pojo对象日期属性的问题

再次执行上述程序,发现结果还是如上,因为pojo的username和password的值我们虽然没有传,但是默认值在User类设为了"",这样的话,传到数据库,实际上username并不为null,那么也不会采用mysql的默认值了。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/u013485239/article/details/78339653

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部