作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近转向了 Spring boot,并开始将所有 XML 转换为 Java 配置。 @Aggregate 注释没有 expireGroupUponCompletion 和 persistenceStore 作为输入。我们还有其他方法可以指定这些东西吗?
最佳答案
Is there any other way we can specify these things?
使用Spring Integration Java DSL :
.aggregate(a -> a.expireGroupsUponCompletion(true)
.sendPartialResultOnExpiry(true)
.messageStore(messageStore(), null)
第二个 null
参数意味着我们对某些端点
自定义不感兴趣,只依赖于默认状态。我们保留该语法以避免 Lambda 参数的显式类型:
.aggregate((AggregatorSpec a) -> a.expireGroupsUponCompletion(true)
.sendPartialResultOnExpiry(true)
.messageStore(messageStore())
关于Spring Aggregator Annotation没有expireGroupUponCompletion和persistenceStore作为输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25887503/
BlackBerry Desktop API 具有 IRimTable 接口(interface),它显然将 BlackBerry 设备上的“应用程序数据库”映射到虚拟结构(即 IRimTable 具
我是一名优秀的程序员,十分优秀!