摘要:
gitee源码在springmvc01分支下链接:https://gitee.com/xuxianke/yxyz.git 参考原博主:https://blog.csdn.net/qq_35987774/article/details/79598596 springmvc-servlet.xml文件, 阅读全文
摘要:
gitee链接: https://gitee.com/xuxianke/yxyz.git 使用dom4j获取xml文件内容,模仿spring配置文件,带你看懂springioc底层 配置文件:application.xml 使用自定义标签模拟spring标签 <?xml version="1.0" 阅读全文
摘要:
功能描述:获取Class类的四种方式 // 1 调用运行时类的属性 .class Class<Person> clazz1 = Person.class; System.out.println(clazz1); // 2 通过运行时类的对象 调用getClass() Person p1 = new 阅读全文