-
Notifications
You must be signed in to change notification settings - Fork 64
Changelog
Ralph Schaer edited this page Aug 13, 2015
·
117 revisions
-
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