A future-proof port of the com.google.gwt.storage.Storage
GWT module, with no dependency on gwt-user
(besides the Java Runtime Emulation), to prepare for GWT 3 / J2Cl.
-
Add the dependency to your build.
For Maven:
<dependency> <groupId>org.gwtproject.storage</groupId> <artifactId>gwt-storage</artifactId> <version>HEAD-SNAPSHOT</version> </dependency>
For Gradle:
implementation("org.gwtproject.storage:gwt-storage:HEAD-SNAPSHOT")
-
Update your GWT module to use
<inherits name="org.gwtproject.storage.Storage" />
-
Change the
import
s in your Java source files:import org.gwtproject.storage.client.*;
To build gwt-storage:
- run
mvn clean verify
on the parent directory. This will build the artifact and run tests against the JVM, J2CL, and GWT2.
GWT Storage requires GWT 2.9.0 or newer!
GWT Storage does not depend on any other module.??????????
Migrate the current gwt-2.8.2 code and remove incompatible dependencies(DONE)Remove dependency on JavaScriptObject(DONE)Remove all jsni constructions(DONE)- Add support for Native Events (pending issue from Gwt2)
- Optionally support receiving notifications of current session modifications
- Add support for automated testing multiple browser sessions from Gwt Unit Test
- Native events are not yet correctly supported, they are emulated.
- Testing multiple browser sessions in a single Gwt Unit Test is not supported by Gwt. Is it?
- It's unknown what mechanism should be used to substitute
GWT.reportUncaughtException
. See methodorg.gwtproject.storage.client.StorageImpl.handleStorageEvent