Springboot Project MyBatis plus settings jdbctypefornull (Oracle database needs to be configured Jdbctype.null, default is Other)

Source: Internet
Author: User

Method 1:application.yml
mybatis-plus:  configuration:    jdbc-type-for-null: ‘null‘ #注意:单引号
Method 2:

View mp-starter-source code, Mybatisplusautoconfiguration, you can find that the 119th line has a configurationcustomizers, you can modify the configuration

Custom one, with the completion

    @BeanPublicConfigurationcustomizerConfigurationcustomizer(){ReturnNew Mybatispluscustomizers (); }Class Mybatispluscustomizers implements  configurationcustomizer { @Override  public  void  customize (Org.apache.ibatis.session.Configuration Configuration)  {configuration.setjdbctypefornull (jdbctype.null);} 
/span>
Method 3:

First step: Add the JavaBean attribute with the updatable null to the previous annotation: @TableField (el = "username, Jdbctype=varchar")

@Email
@TableField (el = "email, jdbctype=varchar")
Private String Email;

Step two: Use the Updateallcolumnbyid method instead of the Updatebyid. such as: this.baseMapper.updateAllColumnById (user);
     

Springboot Project MyBatis plus settings jdbctypefornull (Oracle database needs to be configured Jdbctype.null, default is other)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.