In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article shows you how to solve the problem of invalid mybatis-plus logic deletion, 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.
Add the following note: value represents the default value delval represents the value when deleted
/ * * whether to delete * / @ TableLogic (value = "0", delval = "1") @ TableField (value = "del_flag") private Boolean delFlag
The following figure shows the entire configuration code (if you know where to add the previous configuration, please ignore the following code configuration)
Import com.baomidou.mybatisplus.core.injector.DefaultSqlInjector;import com.baomidou.mybatisplus.core.injector.ISqlInjector;import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor;import com.fasterxml.jackson.databind.ObjectMapper;import com.fasterxml.jackson.databind.module.SimpleModule;import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;import org.mybatis.spring.annotation.MapperScan;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder / * mybatis-plus configuration * * / @ Configuration@MapperScan ({"com.sjyf.gym.mapper.**", "com.sjyf.gym.mapper"}) public class MybatisPlusConfig {/ * paging plug-in * / @ Bean public PaginationInterceptor paginationInterceptor () {return new PaginationInterceptor () } / * pagination * @ param builder * @ return * / @ Bean public ObjectMapper objectMapper (Jackson2ObjectMapperBuilder builder) {ObjectMapper objectMapper = builder.createXmlMapper (false). Build (); SimpleModule simpleModule = new SimpleModule (); / / convert all Long types directly to String simpleModule.addSerializer (Long.class, ToStringSerializer.instance); simpleModule.addSerializer (Long.TYPE, ToStringSerializer.instance) ObjectMapper.registerModule (simpleModule); return objectMapper;} / * * logical deletion * @ return * / @ Bean public ISqlInjector sqlInjector () {return new DefaultSqlInjector ();}} the above is how to solve the problem of invalid mybatis-plus logic deletion. 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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.