What is the relationship between Mapper sql statement fields and entity class attribute names

What is the relationship between Mapper sql statement fields and entity class attribute names

background:

1. There is a notification table in the database

You can see the

  • gmt_create,
  • notifier_name,
  • outer_title

These three fields are underlined.

2. The entity class corresponding to this table is

public class Notification {
  private Long id;
  private Long notifier;
  private Long receiver;
  private Long outerId;
  private Integer type;
  private Long gmtCreate;
  private Integer status;
  private String notifierName;
  private String outerTitle;
}

Use camelCase when writing actual Java code

Note whether camel case mapping is enabled in application.properties

#CamelCase Mapping
mybatis.configuration.map-underscore-to-camel-case=true

3. There is an insert statement in Mapper

//0.Insert a notification
@Insert("insert into questions (title,description,gmt_create,gmt_modified,creator,tag) values ​​(#{title},#{description},#{gmtCreate},#{gmtModified},#{creator},#{tag})")
void createQuestion(Question question);

Conclusion: When doing placeholder, the content in #{} should be gmtCreate

Be careful when writing, writing it as gmt_create may result in an error

There is no getter for property named 'gmt_create' in 'class com.example.com

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MyBatis directly executes SQL using SqlMapper
  • Detailed explanation of sqlSessionFactory injection method of MapperScannerConfigurer
  • Detailed introduction to the extension and application of SqlMapper configuration in Mybatis (1)
  • How to use XSD to verify the Mybatis SqlMapper configuration file (2)
  • How to use XSD to verify the Mybatis SqlMapper configuration file (1)
  • Detailed explanation of MyBatis's getMapper() interface, resultMap tag, Alias, extracting sql columns as much as possible, and dynamic operations
  • Analysis and solution of the error in executing MyBatis MapperProvider MessageFormat splicing batch SQL statements

<<:  Implementation of Docker deployment of web projects

>>:  Vue uses el-table to dynamically merge columns and rows

Recommend

Summary of common MySQL table design errors

Table of contents Mistake 1: Too many columns of ...

Docker image compression and optimization operations

The reason why Docker is so popular nowadays is m...

How to add and delete unique indexes for fields in MySQL

1. Add PRIMARY KEY (primary key index) mysql>A...

Detailed explanation of how to use grep to obtain MySQL error log information

To facilitate the maintenance of MySQL, a script ...

Windows Server 2016 Standard Key activation key serial number

I would like to share the Windows Server 2016 act...

Common problems in implementing the progress bar function of vue Nprogress

NProgress is the progress bar that appears at the...

MySQL 5.7.23 decompression version installation tutorial with pictures and text

Download the MySQL installer Official download ad...

How to write the style of CSS3 Tianzi grid list

In many projects, it is necessary to implement th...

12 types of component communications in Vue2

Table of contents 1. props 2..sync 3.v-model 4.re...

Semantic web pages XHTML semantic markup

Another important aspect of separating structure ...

How much do you know about JavaScript inheritance?

Table of contents Preface The relationship betwee...

Design reference WordPress website building success case

Each of these 16 sites is worth reading carefully,...

Two common solutions to html text overflow display ellipsis characters

Method 1: Use CSS overflow omission to solve The ...

CSS multi-level menu implementation code

This is a pretty cool feature that makes web page...