1. 程式人生 > >spring boot 獲取bean

spring boot 獲取bean

在寫測試用例的時候,如果是springboot的應該加上 springboot的標籤:
@SpringBootTest(classes = ApplicationLoader.class)
@ActiveProfiles("dev")
@RunWith(SpringJUnit4ClassRunner.class)

 

呼叫某個Listener的兩個方法:
一、
SpringUtil.getBean(AppealDetourListener.class);
就是:
(1)applicationContext.getBean(AppealDetourListener.class);
(2)applicationContext.getBean("detourDataListener");
都可以
但是不能用下面的,因為這是springMVC的標籤:
(AppealDetourListener) ContextLoader.getCurrentWebApplicationContext().getBean("detourDataListener");

二、用自動注入的方式也可以;

 @Autowired
    private AppealDetourListener appealDetourListener;