Bugs As shown in the figure, I started to copy the delete statement and parameters to the database to execute and delete two data, but the background execution only deleted one data. I was confused at the time.
Analyze the causes As shown in the figure, the correct parameter value should be like this. Smart students should know what is wrong Solving the problem I won't post the initial code, I will directly post the code to solve the bug Code in mybatis <!-- Batch Delete --> <delete id="deleteByIds" parameterType="int[]"> <![CDATA[ DELETE FROM p_customer WHERE customerId in ]]> <foreach collection="array" item="arr" index="no" open="(" separator="," close=")"> #{arr} </foreach> </delete> Code in controller /** * Delete and bulk delete */ @RequestMapping(value = "/del", method = RequestMethod.POST, produces = { MediaType.APPLICATION_JSON_VALUE }) public ResponseEntity<PCustomerVo> delete(@RequestParam String customerId) throws Exception { //Get the IDs for batch deletion and remove the last "," customerId = customerId.substring(0, customerId.length()-1); String[] strarr=customerId.split(","); int[] arr = new int[strarr.length]; for(int i=0;i<strarr.length;i++){ arr[i]=Integer.parseInt(str[i]); } pcustomerService.deletes(arr); return new ResponseEntity<>(HttpStatus.OK); } Summarize The above is what I introduced to you. The mybatis mysql delete in operation can only delete the first data. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Detailed explanation of two ways of Linux service management: service and systemctl
>>: Vue project implements left swipe delete function (complete code)
Download the redis image docker pull yyyyttttwwww...
1. Nginx installation steps 1.1 Official website ...
Latest solution: -v /usr/share/zoneinfo/Asia/Shan...
Table of contents What are spread and rest operat...
The installation tutorial of MySQL 5.7.27 is reco...
Table of contents Common key aliases Key without ...
Achieve results Implementation ideas The melting ...
How is the MySQL Select statement executed? I rec...
Development Pain Points During the development pr...
<br />Original text: http://andymao.com/andy...
What is a style guide? Simply put, it’s a document...
What can Arthas do for you? Arthas is Alibaba'...
The preparation for the final exams in the past h...
1. Flex is the abbreviation of Flexible Box, whic...
1. Basic structure: Copy code The code is as follo...