通过 SOAPUI 调用消息驱动的 bean?

Invoking Message driven bean via SOAPUI?

我开始处理现有项目并想测试我对消息驱动的 bean 所做的更改。但我从未使用过消息驱动的 bean,那么我该如何调用这个 bean?是否可以通过 SOAPUI 调用来调用它? 豆码:

    @MessageDriven(name = "StudentsScores", activationConfig = {
        @ActivationConfigProperty(propertyName = "destinationStudents", propertyValue = "javax.jms.Queue"),
        @ActivationConfigProperty(propertyName = "destination", propertyValue = "queue/returns")
        @ActivationConfigProperty(propertyName = "sendResponse", propertyValue = "true"),
        @ActivationConfigProperty(propertyName = "dbPassword", propertyValue = "stud_db")
})
public class StudentScoreListener {

}

是的 - 您可以使用 Hermes JMS 来做到这一点。您可以将它用作独立的实用程序或集成到 SoapUI 中。有关详细信息,请参阅 documentation