use of org.apache.servicecomb.core.CseApplicationListener in project incubator-servicecomb-java-chassis by apache.
the class RawSpringMvcSimplifiedMappingAnnotationIntegrationTest method shutdown.
@AfterClass
public static void shutdown() throws Exception {
CseApplicationListener cal = BeanUtils.getBean("org.apache.servicecomb.core.CseApplicationListener");
ContextClosedEvent event = new ContextClosedEvent(BeanUtils.getContext());
cal.onApplicationEvent(event);
}
use of org.apache.servicecomb.core.CseApplicationListener in project incubator-servicecomb-java-chassis by apache.
the class RawSpringMvcIntegrationTest method shutdown.
@AfterClass
public static void shutdown() throws Exception {
CseApplicationListener cal = BeanUtils.getBean("org.apache.servicecomb.core.CseApplicationListener");
ContextClosedEvent event = new ContextClosedEvent(BeanUtils.getContext());
cal.onApplicationEvent(event);
}
Aggregations