激活配置属性值的正则表达式

发布于 2024-12-09 08:48:42 字数 786 浏览 0 评论 0原文

我可以为 ejb-jar.xml 中的activation-config-property-value 提供正则表达式模式吗?

而不是这样的东西。

<activation-config-property>
<activation-config-property-name>messageSelector</activation-config-property-name>
<activation-config-property-value>header='90S' or header='90MS' or header='92S' or header='97S' or header='89S' or header='96CDS'</activation-config-property-value>
</activation-config-property>

我需要类似的东西,

<activation-config-property>
<activation-config-property-name>messageSelector</activation-config-property-name>
<activation-config-property-value>header='%S%'</activation-config-property-value>
</activation-config-property>

请建议。

谢谢,

Can I give a regex pattern for activation-config-property-value in ejb-jar.xml?

instead of something like this.

<activation-config-property>
<activation-config-property-name>messageSelector</activation-config-property-name>
<activation-config-property-value>header='90S' or header='90MS' or header='92S' or header='97S' or header='89S' or header='96CDS'</activation-config-property-value>
</activation-config-property>

I need something like,

<activation-config-property>
<activation-config-property-name>messageSelector</activation-config-property-name>
<activation-config-property-value>header='%S%'</activation-config-property-value>
</activation-config-property>

Please suggest.

Thanks,

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

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

发布评论

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

评论(1

岁月流歌 2024-12-16 08:48:42

简短的回答是:不。不在 JMS 消息选择器中,如 JMS API

最接近正则表达式的是“LIKE”构造,就像 SQL 中一样:

header LIKE 9%S // matches 9.*S
header LIKE 9_S // matches 9.S

它可以让您简化选择器,但它与正则表达式的灵活性仍然相去甚远。

The short answer is: no. Not in JMS message selectors as described by the JMS API

The closest you can get to a regular expression is the "LIKE" construct, like in SQL:

header LIKE 9%S // matches 9.*S
header LIKE 9_S // matches 9.S

It will let you simplify your selector, but it's still far from regex' flexibility.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文