-
Notifications
You must be signed in to change notification settings - Fork 64
Changelog
-
/router
endpoint only accepts requests with headercontent-type: application/json
. ExtJs always sends this header so there is no change needed in your application. This is a protection against cross origin requests. -
Spring index is no longer part of the core library. If you migrate from 1.8.0 and you use Spring index add the
extdirectspring-index
artifcat to your project.<dependency> <groupId>ch.ralscha</groupId> <artifactId>extdirectspring</artifactId> <version>1.8.1</version> </dependency> <dependency> <groupId>ch.ralscha</groupId> <artifactId>extdirectspring-index</artifactId> <version>1.8.1</version> </dependency>
Because the index is not part of the core library anymore you no longer need to disable it with
spring.index.ignore=true
if you're project does not use Spring index.
-
Spring 5.1 and Java 1.8 upgrade. Requires Java 1.8. No new functionality. Only internal code migration to Java 1.8 code.
Library contains a generated
/META-INF/spring.components
file.
This allows the usage of extdirectspring with the spring-context-indexer:
https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#beans-scanning-index
If your Spring application does not use the indexer you have to disable it.
In a Spring Boot application you can do this with the following codepublic static void main(String[] args) throws Exception { System.setProperty("spring.index.ignore", "true"); SpringApplication.run(Main.class, args); }
- No changes, just updated the dependencies
- Fixes Issue #148
- Fixes Issue #144
- Fixes Issue #143
- Fixes a bug when DEFAULT_VIEW_INCLUSION is disabled in the ObjectMapper
-
Issue #141: Add alternative Builder classes for the results object. Both styles are supported.
- ExtDirectFormLoadResult ---> EdFormLoadResult
- ExtDirectFormPostResult ---> EdFormPostResult
- ExtDirectRawJsonStoreResult ---> EdJsonStoreResult
- ExtDirectStoreResult ----> EdStoreResult -
New minimal requirement Spring 4.3.1 and Jackson 2.8
- Introduction
- Changelog 1.7.x
- Setup Maven
- Configuration
- Server Methods
- Model Generator
- Model Generator APT
- Development
- Links