- 博客(5)
- 收藏
- 关注
原创 关于java反射的理解
获取反射的入口 即class对象 1.Class.forName() Class<?> perClazz = Class.forName("..Student"); 2.类名.class Class<?> perClazz2 = Student.class; 3.根据类对象获取 Student st=new Student(); Class<?> per= st.getClass(); 常用方法 1.获取所有public方法(包含本类,父类,接口) Method[] me
2020-06-18 11:12:26 136
原创 关于java设计模式
1.工厂方法模式(Factory method) 创建多个工厂类继承同一个接口; interface Zong{ public createFactory(); } class FistFactory implements Zong{ public Fist createFactory(){ return new Fist(); } } //方法接口 interface Provider{ pub...
2018-10-23 14:56:53 140
原创 FileSystemResource和ClassPathResource类
ClassPathResource类,当资源是在项目里的时候,用这个,相对路径的 ClassPathResource bgFile = new ClassPathResource(bgPath, this.getClass()); FileSystemResource是绝对路径的
2018-10-22 09:59:40 2877
原创 关于Circular placeholder reference 'zookeeper.address' in property definitions错误
关于Circular placeholder reference ‘zookeeper.address’ in property definitions错误 在用tomcat启动web的时候,因为tomcat容器里有两个web同时引用了zookeeper.address,导致的这个错误,再次记录一下, 解决办法,暂时移除不用的web项目 ...
2018-09-20 16:12:21 2231
原创 关于maven的<resources>标签
src/main/resources true 作用是使src/main/resources下的所有.properties里面用${}引用的属性能在相应的pom.xml中取到值...
2018-09-13 17:33:46 473
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人