本文主要是介绍根据建表语句生成实体类和查询用的ResultMap,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import java.io.*;public class Main {public static void main(String[] args) {String filePath = "D:\\00t1.txt";Main main = new Main();main.getModel(filePath);main.getResultMapXML(filePath);}//main/*** 根据sql生成实体类,支持多个建表语句* 输入:建表语句的文件路径* 输出:ResultMap** @param filePath*/private void getModel(String filePath) {System.out.println("//------------以下是生成的Model代码-----------");InputStream is = null;String propertyName;String typeName;String commentStr;try {is = new FileInputStream(filePath);BufferedReader reader = new BufferedReader(new InputStreamReader(is, "utf-8"), 512);// 读取一行,存储于字符串列表中for (String line = reader.readLine(); line != null; line = reader.readLine()) {
这篇关于根据建表语句生成实体类和查询用的ResultMap的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!