文件名称:mybatis-generate mybatis3数据库代码生成工具,生成controller\service\mapper等等。。
文件大小:52KB
文件格式:ZIP
更新时间:2023-06-26 04:01:23
mybatis3代码生成 完整有用
本生成工具是maven版本。 mybatis3版本生成数据库表工具,能支持oracle、mysql。 使用简单,配置简单。 主类在GeneratorMain,只要指定几个关键点,输出路径,输入表名,上级包名,就能生成代码后,直接复制到工程中,生成类中结构清晰,注释完整。 /** * 生成演示 */ public static void main(String[] args) { String outputDir = "d:/code/my";//此文件夹会生成到D:目录下 String[] tables = {"sys_dic"}; String packageParent = "com.my.cloud.cms.module.search"; GeneratorMain generatorMain = new GeneratorMain(); generatorMain.generateMain(outputDir, tables, packageParent); } 生成的代码就在 d:/code/my 下。 使用遇到问题,咨询我:a393060727@163.com
【文件预览】:
mybatis-generate
----pom.xml(2KB)
----src()
--------test()
--------main()