object is not an instance of declaring class

对象不是声明类的一个实例。

//获取adminLogService对象
        Object obj = null;
        ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(request.getServletContext()); 
        obj = context.getBean("adminLogService"); 
        
        if (obj != null) {
    	    try{
    	    	//使用反射执行adminLogService对象save方法
    	        Class adminLogService = (Class) obj.getClass();
    	        Method save = adminLogService.getDeclaredMethod("save", new Class[] { SystemLogEntity.class });
    	        save.invoke(adminLogService, new Object[] { systemLogEntity });
    	    }catch (Exception e){
    	        e.printStackTrace();
    	    }
        }
        

执行到save.invoke(adminLogService, new Object[] { systemLogEntity });时报错!

报错:object is not an instance of declaring class  

说明Class没有实例化; 


解决办法: 

由于没有实例化可以有如下两种方法: 
1、反射方法定义成为static的,故被反射类就不需要实例化; 

2、method.invoke(_class.newInstance(), args);

save.invoke(adminLogService.newInstance(), new Object[] { systemLogEntity });

你可能感兴趣的:(【BUG总结】)