摘要:
内省:操作javabean的属性,属性指的是字段拥有get或set方法叫做属性 /* 内省 Introspector */ public void test() throws Exception{ BeanInfo info = Introspector.getBeanInfo(Person.class); PropertyDescriptor[] pds = info.getPropertyDescriptors(); for(PropertyDescriptor pd : pds){ System.o... 阅读全文
摘要:
反射:就是加载类,然后在解剖类的各个组成部分(反射都是用于做框架的) 1 /** 2 * 反射--->提取构造方法-->public 3 * @throws Exception 4 */ 5 public void test() throws Exception{ 6 Class clazz = Class.forName("com.tkbs.du.refle.Person"); 7 Constructor c = clazz.getConstructor(null); 8 Person... 阅读全文
摘要:
1.spring-serlvet.xml 1 2 3 4 5 6 7 8 9 注:这里bean的Id一定要写multipartResolver,前面不能加commons。 2.Controller(一共有两种方法) 1 @RequestMapping("/load") 2 public String downLoad( 3 @RequestParam("wenjian")CommonsMultipartFile multiFi... 阅读全文