可以通過Spring提供的ApplicationContext接口來查看Spring容器中的對象。ApplicationContext接口提供了多個方法來獲取容器中的對象,包括根據bean的名稱、類型、注解等來獲取對象。以下是一些常用的方法:
Object bean = applicationContext.getBean("beanName");
MyBean bean = applicationContext.getBean(MyBean.class);
String[] beanNames = applicationContext.getBeanDefinitionNames();
boolean containsBean = applicationContext.containsBean("beanName");
通過以上方法可以方便地查看Spring容器中的對象,并進一步對這些對象進行操作。