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 self-growing id after Mybatis and spring-data-jpa acquire insert

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

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

This article shows you what the self-growing id is after Mybatis and spring-data-jpa acquire insert. The content is concise and easy to understand. It will definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.

In some scenarios, we need to get the id of the record after adding and saving it to the database, and the implementation of this scenario is included in both Mybatis and spring-data-jpa.

Id insert into sys_user (user_id, username, password) values (# {userId,jdbcType=BIGINT}, # {username,jdbcType=VARCHAR}, # {password,jdbcType=VARCHAR}) since 1.Mybatis acquired insert

Find the corresponding insert statement in the mapper file, plus two attributes of useGeneratedKeys= "true" keyProperty= "userId", where userId is the id attribute in the entity class.

The id that has grown since 2.spring-data-jpa acquired insert

Add the following statement above the id attribute of the entity class:

@ GeneratedValue (strategy = GenerationType.IDENTITY)

Add this sentence, spring data jpa can know that you want to get the saved entity, and then return to the entity, you can directly get the saved id.

The above content is what is the self-growing id of Mybatis and spring-data-jpa after acquiring insert? have you learned the 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

Internet Technology

Wechat

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

12
Report