├── .gitignore ├── LICENSE ├── README-en.md ├── README.md ├── pom.xml └── src └── main └── java └── online └── githuboy └── jrebel └── mybatisplus ├── MybatisPlusPlugin.java └── cbp ├── Constants.java ├── MybatisConfigurationCBP.java ├── MybatisMapperAnnotationBuilderCBP.java ├── MybatisMapperProxyCBP.java ├── MybatisMapperProxyFactoryCBP.java ├── MybatisSqlSessionFactoryBeanCBP.java ├── StrictMapCBP.java └── XMLMapperBuilderCBP.java /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | target/ 4 | dumped -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/LICENSE -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/README-en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/online/githuboy/jrebel/mybatisplus/MybatisPlusPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/src/main/java/online/githuboy/jrebel/mybatisplus/MybatisPlusPlugin.java -------------------------------------------------------------------------------- /src/main/java/online/githuboy/jrebel/mybatisplus/cbp/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/src/main/java/online/githuboy/jrebel/mybatisplus/cbp/Constants.java -------------------------------------------------------------------------------- /src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisConfigurationCBP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisConfigurationCBP.java -------------------------------------------------------------------------------- /src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisMapperAnnotationBuilderCBP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisMapperAnnotationBuilderCBP.java -------------------------------------------------------------------------------- /src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisMapperProxyCBP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisMapperProxyCBP.java -------------------------------------------------------------------------------- /src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisMapperProxyFactoryCBP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisMapperProxyFactoryCBP.java -------------------------------------------------------------------------------- /src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisSqlSessionFactoryBeanCBP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/src/main/java/online/githuboy/jrebel/mybatisplus/cbp/MybatisSqlSessionFactoryBeanCBP.java -------------------------------------------------------------------------------- /src/main/java/online/githuboy/jrebel/mybatisplus/cbp/StrictMapCBP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/src/main/java/online/githuboy/jrebel/mybatisplus/cbp/StrictMapCBP.java -------------------------------------------------------------------------------- /src/main/java/online/githuboy/jrebel/mybatisplus/cbp/XMLMapperBuilderCBP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SweetInk/jrebel-mybatisplus/HEAD/src/main/java/online/githuboy/jrebel/mybatisplus/cbp/XMLMapperBuilderCBP.java --------------------------------------------------------------------------------