美文网首页
DTO代码自动生成器

DTO代码自动生成器

作者: 沧海一粟谦 | 来源:发表于2018-07-26 10:39 被阅读39次

导入jar包

配置dto.properties文件

dto.driverClass = com.mysql.jdbc.Driver
dto.jdbcUrl = jdbc:mysql://localhost:3306/spring
dto.user = root
dto.password = 123456
dto.package = bean
dto.mapper = mapper
dto.tablePrefix = t_

写个main方法生成代码

public class Test {
    public static void main(String[] args) throws Exception {
        DTOHelper dto = new DTOHelper();
        dto.createDto();
    }
}

最后生成的文件

相关文章

网友评论

      本文标题:DTO代码自动生成器

      本文链接:https://www.haomeiwen.com/subject/vhbvmftx.html