Error loading cache card - GWT

I get this error while compiling my GWT project, there is no such folder as 'gwt-UnitCache' to delete, as suggested in the following questions

I use IntelliJ IDEA (IDE), SmartGWT EE (Framework), JBoss AS (Server) and JPA

Here's the error log:

enter image description here

+5
source share
6 answers

I was able to fix this by systematically deleting, compiling and re-adding every part of the artifact. If you have this problem, make sure you have the following structure:

enter image description here

lib contains your compile-time libraries

+1
source

<module rename-to='<appname>'> .gwt.xml, :), gwt-unitCache, :)

+4

IntelliJ IDEA GWT , <ProjectFolder>/gwt-unitCache, , , , Eclipse GPE ( Google Eclipse).

IDEA GWT <your_home>/.IntelliJIdea12/system/gwt (IntelliJ IDEA 12, Linux). " IDE" .

gwt, IntelliJ , , , Failure in unit cache... ( Unable to read from byte cache).

+2

Eclipse.

, , , Crowlix. gwtCache Temp, .

.

+2

, , , , , , :

Java

-Xss1m, , , -Xss5m

GWT 2.5.1 IntelliJ 12.

+1

maven.

Nishant @iVieL:

$ export MAVEN_OPTS="-Xms512m -Xmx1024m -Xss32m"
$ mvn clean package
0

All Articles