将字符串注入消息驱动 Bean

发布于 2024-11-02 17:56:27 字数 161 浏览 1 评论 0原文

我想用字符串配置我的一个 mdb 的行为。我创建了一个 setMessageType 方法,并希望通过 ejb-jar(部署描述符)中的配置将标识符字符串注入到 mdb 中。

我知道如何在 ejb-jar 中声明 bean,但如何控制依赖注入?

问候,

劳雷斯

I want to configure the behaviour of one of my mdbs with string. i created a setMessageType method and want to inject the identifier string into the mdb by configuration in the ejb-jar (deployment descriptor).

I know how do declare a bean in the ejb-jar but how do i control dependency injection?

Greetings,

Laures

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼藏柔 2024-11-09 17:56:27

有趣的是我从来没有回答过这个问题。

<message-driven>
    <ejb-name>mymdb</ejb-name>
    <ejb-class>net.something.MyMDBClass</ejb-class>
    <activation-config>
        <activation-config-property>
            <activation-config-property-name>destinationType</activation-config-property-name>
            <activation-config-property-value>javax.jms.Topic</activation-config-property-value>
        </activation-config-property>
        <activation-config-property>
            <activation-config-property-name>destination</activation-config-property-name>

            <activation-config-property-value>i.listen.here</activation-config-property-value>
        </activation-config-property>
    </activation-config>
    <env-entry>
        <env-entry-name>MessageType</env-entry-name>
        <env-entry-type>java.lang.String</env-entry-type>
        <env-entry-value>myconfigstring</env-entry-value>
    </env-entry>
</message-driven>

funny i never go an answer to this questions.

<message-driven>
    <ejb-name>mymdb</ejb-name>
    <ejb-class>net.something.MyMDBClass</ejb-class>
    <activation-config>
        <activation-config-property>
            <activation-config-property-name>destinationType</activation-config-property-name>
            <activation-config-property-value>javax.jms.Topic</activation-config-property-value>
        </activation-config-property>
        <activation-config-property>
            <activation-config-property-name>destination</activation-config-property-name>

            <activation-config-property-value>i.listen.here</activation-config-property-value>
        </activation-config-property>
    </activation-config>
    <env-entry>
        <env-entry-name>MessageType</env-entry-name>
        <env-entry-type>java.lang.String</env-entry-type>
        <env-entry-value>myconfigstring</env-entry-value>
    </env-entry>
</message-driven>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文