第十五章 springboot + pojo默认值设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第十五章 springboot + 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);
测试:查看数据库
如果数据库也设置了默认值,如下
再次执行上述程序,发现结果还是如上,因为pojo的username和password的值我们虽然没有传,但是默认值在User类设为了"",这样的话,传到数据库,实际上username并不为null,那么也不会采用mysql的默认值了。
以上是关于第十五章 springboot + pojo默认值设置的主要内容,如果未能解决你的问题,请参考以下文章