Moritz Becker
Moritz Becker
#81 *Description of changes:* Add async send methods to SQSMessageProducer
Extend SQSMessageProducer to facilitate sending batches of JMS messages with SendMessageBatchRequest
Currently, the SQSMessageProducer only allows sending messages one by one. However the SQS supports SendMessageBatchRequest to send multiple messages with one request. While the JMS API does not support this,...
At least on Windows, the plugin frequently logs retry attempts when connecting to the docker host via named pipes: ``` [INFO] I/O exception (java.io.FileNotFoundException) caught when processing request to {}->npipe://127.0.0.1:1:...
### Description Given following repository method: ```java List findOrders(Specificatoin specification, Pageable pageable); ``` The invocation of this method fails with the following exception when using `Pageable.unpaged()`. E.g. ```java orderRepository.findOrders(mySpec, Pageable.unpaged());...
Subview mapping expressions only allow path / treat expressions. We should validate the expression and throw an expressive exception.
Currently, Blaze-Persistence does not work with EclipseLink 2.7.x. We should add support for it. While doing that, we should also add support for version 3.x which, according to the issue...
We should add support for plain boolean expressions in entity view mappings like e.g.: ```java @Mapping("age > 10") ``` Since JPQL does not support plain boolean expressions in select items,...
We sometimes generate clauses twice when we say e.g. groupByManager.applyGroupBys() orderByManager.buildGroupByClauses() buildGroupByClauses() might generate clauses that have already been generated in applyGroupBys(). Such duplicates should be eliminated.
I have been trying hard to get primeui working using the SystemJS module loader. I have documented my efforts in this [thread](https://discourse.aurelia.io/t/how-to-use-primeelements-in-aurelia/911/19). I tried using AMD and CJS module formats....