概述
对象不是声明类的一个实例。
//获取adminLogService对象
Object obj = null;
ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(request.getServletContext());
obj = context.getBean("adminLogService");
if (obj != null) {
try{
//使用反射执行adminLogService对象save方法
Class<AdminLogService> adminLogService = (Class<AdminLogService>) 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 });
最后
以上就是务实唇膏为你收集整理的object is not an instance of declaring class的全部内容,希望文章能够帮你解决object is not an instance of declaring class所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复