mybatis-generator-gui icon indicating copy to clipboard operation
mybatis-generator-gui copied to clipboard

mybatis-generator界面工具,让你生成代码更简单更快捷

Results 103 mybatis-generator-gui issues
Sort by recently updated
recently updated
newest added

~/Tools/mybatis-generator-gui$ java -jar mybatis-generator-gui.jar 错误: 找不到或无法加载主类 com.zzg.mybatis.generator.MainUI

![image](https://user-images.githubusercontent.com/22764305/42359946-24762a1c-8118-11e8-8c70-908071ef969c.png)

生成的实体类对象里面有注释,但是我想在gui界面操作的时候也能看到字段的注释,这个要怎么弄啊?

例如在使用in查询的时候 自动生成的api是这样的 ``` public Criteria andDyUserIdIn(List values) { addCriterion("dy_user_id in", values, "dyUserId"); return (Criteria) this; } ``` 建议把这个List 换成 Collection ,往往有时候我们对某些数据去重后,大部分会采用Set容器,这样的话 调这种类型的api 还得new ArrayList ,所以 这里建议直接采用Collection类型的集合

建议在pom文件中,没必要自己在去网上下载mysql的jar包, 做的很好

请问工程的jar包哪里下载啊?没jar包运行不成功!

将生成的jar包打包成exe执行文件运行之后在链接数据库时报错,相关信息: jdk:jdk1.8.0_181 系统:win10 mysql:MariaDB 10.3 错误截图: ![2018-10-18_14-28-02](https://user-images.githubusercontent.com/38526035/47135538-41e90700-d2e3-11e8-9c39-1340e08ffa5e.png) ![2018-10-18_14-29-02](https://user-images.githubusercontent.com/38526035/47135552-4dd4c900-d2e3-11e8-9b4f-e0f288c52558.png) ![2018-10-18_14-29-32](https://user-images.githubusercontent.com/38526035/47135553-4e6d5f80-d2e3-11e8-981c-e49d80b2e899.png) ![2018-10-18_14-29-46](https://user-images.githubusercontent.com/38526035/47135554-4e6d5f80-d2e3-11e8-879f-ab56ef8974fb.png)

我们项目中不用xml方式配置了 全部使用注解了,没有一个xml配置文件,是否考虑支持注解 对了,我用的是springboot