在春季,可以这样做。有人有代码示例吗?

最佳答案

if (number % 2 == 0) { // is even

    anotherBean = (AnotherBean) applicationContext.getBean("anotherBean");

    // send even to another bean
    anotherBean.send(number);
}


有关其他信息,请参见here

09-13 08:27