Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the way Spring Data JPA sets the default values of fields?

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article shows you how to set field defaults in Spring Data JPA. The content is concise and easy to understand, which will definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.

Spring Data JPA sets field default values

Write the following two attributes in the Column comment, why check the document yourself, you can set the default value of the field, and by the way solve the problem that the field is automatically populated as null in the sql statement generated by the save method.

The default values cannot be updated, so if you want to change the field defaults in the code, you need to rebuild the table.

@ Column (insertable = false,columnDefinition = "int default 1") private Integer sex; @ Column (insertable = false,columnDefinition = "decimal DEFAULT 0.00") private BigDecimal accountBalance;// account balance

ColumnDefinition = "creter table DDL statement equivalent to database"

CREATE TABLE `account_ info` (`id` int (11) NOT NULL AUTO_INCREMENT,. . . . `account_ balance` decimal (197.2) DEFAULT '0.005,. . . . PRIMARY KEY (`id`) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;Spring Data JPA failed to set field default value

The annotation used to set default values for jpa annotations is @ Column. But one problem is that if you have already created the table, it is useless to add @ Column (insertable = false,columnDefinition = "int default 1"), because this annotation only works when the table is created, that is, if the table has been built in DB, this property is not necessary.

@ Column (columnDefinition= "int default 1", nullable=false) private int number

Therefore, it is best to add logical operations when writing save () or update ().

The above is how Spring Data JPA sets the default values of fields. Have you learned any knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report