-
Notifications
You must be signed in to change notification settings - Fork 64
Changelog1_6_x
İlhan Subaşı edited this page Nov 26, 2019
·
2 revisions
-
Add a sort method to RemotingApi
-
Add an utility method (generateApiString) to ExtDirectSpringUtil that returns the api configuration as a String
-
Issue #139: Batched requests used the last jsonView and ignored all the others. With this change every method result is serialized with their configured jsonView.
-
New minimal requirement Spring 4.2.0 and Jackson 2.6
-
Support for batched option (introduced in Ext JS 6.0.1)
If batched is disabled, always send requests immediately for this method. Requests to this method will never be part of a batch request.@ExtDirectMethod(batched = false) public String doSomething(String input) { .... }
Default is ```batched = true```
- Support for bufferLimit configuration option (introduced in Ext JS 6.0.1)
Configuration config = new Configuration(); config.setBufferLimit(3);
Sets the maximum number of requests to batch together. By default, an unlimited number of requests will be batched. This option does nothing if buffer is disabled: ```config.setEnableBuffer(false)```
- Removed SSE support from library. Spring 4.2.0 has built-in support for server-sent events.
- Introduction
- Changelog 1.7.x
- Setup Maven
- Configuration
- Server Methods
- Model Generator
- Model Generator APT
- Development
- Links