MyBatisCodeHelper-Pro icon indicating copy to clipboard operation
MyBatisCodeHelper-Pro copied to clipboard

Results 271 MyBatisCodeHelper-Pro issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/42857023/165722856-1557945e-c7b3-4e78-9b42-e8c462a8d03b.png)

waiting-for-feedback

我的配置是这样子的: `typeAliasesPackage: com.tkt.**.domain` 目前xml文件里面不可以点击查看实体 如果我把`**`去掉就可以识别, 希望可以支持带`**`的匹配, 匹配任意的文件夹 参考项目https://gitee.com/y_project/RuoYi-Vue 可以参考这个开源项目复现上述问题

enhancement

``` xml u.user_name = #{userName} and u.user_name = #{userName} and u.del_flag = 0 ${_parameter.dataScope('u')} ``` 就像上方代码中描述的问题,比如 ``` xml a.id = 1 ${_parameter.dataScope('u')} ``` 这样的代码就会使 a.id = 1 这行光标异常,按住CTRL并且鼠标指向字段时无法高亮,双击这一行的任何字符都会使光标错位; 但是,如果在 a.id...

bug
waiting-for-feedback

若一个表为分表时,在mapper.xml中的sql中写的是逻辑表名,则无法支持跳转字段、定位表等操作了

目前如果mapper中定义了一个方法且有XML部分的实现的话, 如果该方法并未被其他Java代码所引用,这个方法的方法名不是灰色的,不能一眼就看出来这个实际上是可以被删除的。 只能用Ctrl+左键单击手动查看并判断。 然后如果用ALT+delete安全删除的话,又提示有XML部分的引用导致不能直接删除。 所以期望能提供对这块儿的支持。

enhancement

java.lang.Throwable: Slow operations are prohibited on EDT. See SlowOperations.assertSlowOperationsAreAllowed javadoc. at com.intellij.openapi.diagnostic.Logger.error(Logger.java:182) at com.intellij.util.SlowOperations.assertSlowOperationsAreAllowed(SlowOperations.java:102) at com.intellij.util.indexing.FileBasedIndexImpl.ensureUpToDate(FileBasedIndexImpl.java:784) at com.intellij.util.indexing.FileBasedIndexEx.processExceptions(FileBasedIndexEx.java:244) at com.intellij.util.indexing.FileBasedIndexEx.processValueIterator(FileBasedIndexEx.java:349) at com.intellij.util.indexing.FileBasedIndexEx.processValuesInScope(FileBasedIndexEx.java:318) at com.intellij.util.indexing.FileBasedIndexEx.processValues(FileBasedIndexEx.java:223) at com.intellij.psi.search.FilenameIndex.getVirtualFilesByName(FilenameIndex.java:210) at com.intellij.psi.search.FilenameIndex.processFilesByName(FilenameIndex.java:109) at com.intellij.psi.search.FilenameIndex.processFilesByName(FilenameIndex.java:78)...

一键生成findByAll,提示缺少createTime 字段,忽略后生成以下内容 ` and null=#{createTime} ` 字段名称应为created_time。updated_time字段就没有任何问题。

![image](https://user-images.githubusercontent.com/42857023/158012646-8d830ff8-d9d9-4acb-ac73-9d8dbfd925a6.png)

waiting-for-feedback

通用mapper代码生成器生成的xml没有报红 ![image](https://user-images.githubusercontent.com/18497716/158053392-1013d4b7-a70c-403e-bb1a-b7e10ffe9268.png) 在xml中加上一个方法就报红 ![image](https://user-images.githubusercontent.com/18497716/158053415-3964c102-43da-43cd-b69c-8872745edbc1.png) 插件版本:MyBatisCodeHelperPro 2.9.8-183-204 idea版本:IntelliJ IDEA Ultimate 2020.3.4 x64

waiting-for-feedback

- 数据库:Microsoft SQL Server 2016 (SP2) (KB4052908) - 13.0.5026.0 (X64) - idea:最新版 - MyBatisCodeHelperPro:2.9.8-183-204 - Java版本:java version "11.0.12" ![image](https://user-images.githubusercontent.com/23052351/149858025-2df7a0d9-89d0-481a-84ca-2a22eb9bc222.png) 这里选择的「是」 ![image](https://user-images.githubusercontent.com/23052351/149858054-a1f0a7b2-88b5-4133-8e9b-ac1a2ca37cad.png) 这里选择的「是」 ![image](https://user-images.githubusercontent.com/23052351/149858075-946cb9c3-2532-42e6-9247-50a4148ca88a.png) 这里选择的「是」 错误提示: ``` java.lang.RuntimeException: process freemarker template...

bug