摘要:
xml文件的配置: <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" 阅读全文
摘要:
xml文件的配置: <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" 阅读全文
摘要:
/* * 懒汉式单例模式(安全效率低) */ public class LazySingleton { private static LazySingleton instance=null; //私有构造器 private LazySingleton() {} public static synch 阅读全文
|