mybatis-plus-join/plugin/mybatis-plus-join-solon-plugin
dependabot[bot] bb2c8115e0 chore(deps): bump org.noear:solon from 3.0.9 to 3.1.0
Bumps [org.noear:solon](https://github.com/noear/solon) from 3.0.9 to 3.1.0.
- [Release notes](https://github.com/noear/solon/releases)
- [Commits](https://github.com/noear/solon/compare/v3.0.9...v3.1.0)

---
updated-dependencies:
- dependency-name: org.noear:solon
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-14 16:58:27 +08:00
..

mybatis-plus-join-solon-plugin

<dependency>
    <groupId>com.github.yulichang</groupId>
    <artifactId>mybatis-plus-join-solon-plugin</artifactId>
    <version>lastVersion</version>
</dependency>

Tips:

如果出现 Invalid bound statement (not found) 添加如下配置

mybatis.db1:
    globalConfig:
        sqlInjector: com.github.yulichang.injector.MPJSqlInjector

mapper继承MPJBaseMapper

import com.github.yulichang.base.MPJBaseMapper;

@Mapper
public interface UserMapper extends MPJBaseMapper<UserDO> {

}