isTypeMatch(String name,Class targetType)
引數說明:public static void main(String[] args){ ApplicationContext context = new ClassPathXmlApplicationContext( "appContext.xml"); //載入appContext.xml檔案 boolean typeMatch = context.isTypeMatch("time",Date.class); //判斷獲取型別是否是指定型別 System.out.println("名稱為time的JavaBean型別是否Date:"+typeMatch); }