Registry / orm / mybatis-plus-boot-starter

mybatis-plus-boot-starter

JSON →
library3.5.16javamavenunverified

An enhanced toolkit of Mybatis to simplify development, providing auto-configuration for Spring Boot.

<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.5.16</version> </dependency>
INSTALL
IMPORT
SIG · MYBATIS-PLUS-BOOT-
M
mybatis-plus-boot-starter
ormjavav3.5.16
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

QueryWrapper
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper

Uses QueryWrapper to build a query condition and retrieve a single entity.

import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; public class UserServiceImpl extends ServiceImpl<UserMapper, User> { public User findByName(String name) { QueryWrapper<User> wrapper = new QueryWrapper<>(); wrapper.eq("name", name); return getOne(wrapper); } }
Debug
Known issues
breakingMyBatis-Plus 3.5.x requires MyBatis 3.5.x and Spring Boot 2.x/3.x; incompatible with older MyBatis versions.
fix
Ensure your project uses MyBatis 3.5+ and the correct Spring Boot version.
affects: >=3.5.0
Upgrade
Version history
3.5.16latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
26 hits · last 30 days
node
24
OpenAI (training)
1
Resources
mybatis-plus-boot-starter — mvn dependency:get mybatis-plus-boot-starter · libregistry