首页 文章 精选 留言 我的

精选列表

搜索[服务],共10000篇文章
优秀的个人博客,低调大师

Mybatisplus-plus 1.5.0 发布,新增服务层根据复合主键批量更新操作

需要在service使用多主键相关操作包括saveOrUpdateByMultiId和批量操作updateBatchByMultiId和saveOrUpdateBatchByMultiId,可以直接继承IMppService接口。 service层继承IMppService接口和MppServiceImpl public interface Test07Service extends IMppService<Test07Entity> { } public class Test07ServiceImpl extends MppServiceImpl<Test07Mapper, Test07Entity> implements Test07Service { } 在service层根据复合主键进行批量操作和saveOrUpdate操作 @Test public void testSaveOrUpdateByMultiIdService(){ //id Test07Entity idEntity=new Test07Entity(); idEntity.setK1(6); idEntity.setK2("666"); //del test07Service.deleteByMultiId(idEntity); //add test07Service.saveOrUpdateByMultiId(idEntity); //update idEntity.setCol1("ccccc"); test07Service.saveOrUpdateByMultiId(idEntity); } @Test public void testSaveOrUpdateBatchByMultiIdService(){ //ids List<Test07Entity> entityList=new ArrayList<Test07Entity>(); for(int i=10;i<30;i++){ Test07Entity idEntity=new Test07Entity(); idEntity.setK1(i); idEntity.setK2(String.valueOf(i*10)); entityList.add(idEntity); } //del for(Test07Entity idEntity:entityList) { test07Service.deleteByMultiId(idEntity); } //add batch test07Service.saveOrUpdateBatchByMultiId(entityList); //del for(Test07Entity idEntity:entityList) { idEntity.setCol1(new Date().toString()); } //update batch test07Service.saveOrUpdateBatchByMultiId(entityList); } @Test public void testUpdateBatchByMultiIdService(){ //ids List<Test07Entity> entityList=new ArrayList<Test07Entity>(); for(int i=50;i<80;i++){ Test07Entity idEntity=new Test07Entity(); idEntity.setK1(i); idEntity.setK2(String.valueOf(i*10)); entityList.add(idEntity); } //del for(Test07Entity idEntity:entityList) { test07Service.deleteByMultiId(idEntity); } //add batch test07Service.saveOrUpdateBatchByMultiId(entityList); //del for(Test07Entity idEntity:entityList) { idEntity.setCol1(new Date().toString()); } //update batch test07Service.updateBatchByMultiId(entityList); }

优秀的个人博客,低调大师

通信框架 smart-socket,web 服务器 smart-http 日常更新

更新内容 【smart-socket】VirtualBuffer 新增 wrap 接口,用于将 ByteBuffer 对象包装成 VirtualBuffer 。 【smart-socket】WriteBuffer 支持 ByteBuffer、VirtualBuffer 对象的输出。 【smart-http】升级 smart-socket 至 1.5.2。 【smart-http】解决 chunked 在 http 1.0 下的兼容性问题。 【smart-http】request 支持设置附件对象。 【smart-http】新增接口BufferOutputStream,支持 ByteBuffer、VirtualBuffer 对象的输出。 Maven smart-socket <dependency> <groupId>org.smartboot.socket</groupId> <artifactId>aio-core</artifactId> <version>1.5.2</version> </dependency> smart-http <dependency> <groupId>org.smartboot.http</groupId> <artifactId>smart-http-server</artifactId> <version>1.0.20</version> </dependency>

资源下载

更多资源
Mario

Mario

马里奥是站在游戏界顶峰的超人气多面角色。马里奥靠吃蘑菇成长,特征是大鼻子、头戴帽子、身穿背带裤,还留着胡子。与他的双胞胎兄弟路易基一起,长年担任任天堂的招牌角色。

Nacos

Nacos

Nacos /nɑ:kəʊs/ 是 Dynamic Naming and Configuration Service 的首字母简称,一个易于构建 AI Agent 应用的动态服务发现、配置管理和AI智能体管理平台。Nacos 致力于帮助您发现、配置和管理微服务及AI智能体应用。Nacos 提供了一组简单易用的特性集,帮助您快速实现动态服务发现、服务配置、服务元数据、流量管理。Nacos 帮助您更敏捷和容易地构建、交付和管理微服务平台。

Rocky Linux

Rocky Linux

Rocky Linux(中文名:洛基)是由Gregory Kurtzer于2020年12月发起的企业级Linux发行版,作为CentOS稳定版停止维护后与RHEL(Red Hat Enterprise Linux)完全兼容的开源替代方案,由社区拥有并管理,支持x86_64、aarch64等架构。其通过重新编译RHEL源代码提供长期稳定性,采用模块化包装和SELinux安全架构,默认包含GNOME桌面环境及XFS文件系统,支持十年生命周期更新。

WebStorm

WebStorm

WebStorm 是jetbrains公司旗下一款JavaScript 开发工具。目前已经被广大中国JS开发者誉为“Web前端开发神器”、“最强大的HTML5编辑器”、“最智能的JavaScript IDE”等。与IntelliJ IDEA同源,继承了IntelliJ IDEA强大的JS部分的功能。

用户登录
用户注册