Questions tagged [gwt-super-dev-mode]

A new GWT development mode that is no longer using the browser plugin.

The Super Development Mode (SDM) allows GWT developers to quickly recompile their code (incrementally) and see the results in a browser. It also allows developers to debug the running GWT application in the browser. Developers can even debug Java code if they are using a browser that supports source maps.

A big advantage compared to the Classic Development Mode is the fact, that no plugin is needed anymore and the applications can be tested on various browsers (even mobile).

130 questions
1
vote
1 answer

GWT Superdevmode interposing code server for CSS files

I'm trying to move from Classic to Super dev mode and seeing a problem in the latter. The problem is two-fold. First, it is trying to use the code server to give the css files to the web page. Here is a line from the element in the resultant web…
rdgWarren
  • 87
  • 1
  • 8
1
vote
0 answers

GWT web workers and super dev mode

Is it possible to use web workers with GWT super dev mode? Are there any workarounds for this? I tried using source map in production mode (GWT source maps in production) but it didn't work out.
Konstantin Solomatov
  • 10,252
  • 8
  • 58
  • 88
1
vote
2 answers

Library Sources are not available in SuperDevMode

I created a demo project here. It compile with GWT compile without any problems from Eclipse. When I run the app in SuperDevMode the first compile failed with the following errors: Compiling 1 permutation Compiling permutation…
Michael
  • 32,527
  • 49
  • 210
  • 370
1
vote
1 answer

Include additional Sources for recompile in gwtSuperDev Task

I use the GWT Gradle Plugin. I have a second project which I included in my main project with: dependencies { compile(project(':core-project')) { transitive = false } } I have also created a settings.gradle which contains includeFlat…
Michael
  • 32,527
  • 49
  • 210
  • 370
1
vote
1 answer

Vaadin/GWT: different behaviour with Dev Mode on and off

I'm developing a Vaadin widget and I'm having problems with GWT's superDevMode. Yesterday I had a bug which did not show up when setting Dev Mode On (using the bookmark), but did when setting Dev Mode Off. Today I have unwanted behaviour when…
1
vote
0 answers

When using gwt-log source maps doesn't work when catching uncaught exceptions

I have recently started using gwt-log. I followed the Getting Started tutorial and added Log.setUncaughtExceptionHandler() in my initialization file as suggested, but when it is there I get this exception in the chrome console (using super dev…
slugmandrew
  • 1,776
  • 2
  • 25
  • 45
1
vote
1 answer

GWT Super Dev Mode doesn't work with GQuery

I used maven dependency to get GQuery lib: com.googlecode.gwtquery gwtquery 1.4.2 Added inheritance to project.gwt.xml file, namely:
Dragon
  • 2,431
  • 11
  • 42
  • 68
1
vote
1 answer

GWT SuperDevMode RPC host

I'm trying to start SuperDevMode the following way. I modified my index.jsp page to append a configurable prefix to the .nocache.js file. Production config contains an empty prefix, while development config contains something like…
Alexey Andreev
  • 1,980
  • 2
  • 17
  • 29
1
vote
0 answers

GWT SuperDev Source Code not Showing

I'm following the instructions in this blog post (http://www.badlogicgames.com/wordpress/?p=3073) for trying to debug the GWT version of my LibGDX project. I can compile the GWT project fine, and start the superdev code server using en Eclipse "Run…
DeejUK
  • 12,891
  • 19
  • 89
  • 169
1
vote
0 answers

The type was not found compilation error in GWT Super Dev Mode

I upgraded to GWT 2.6.0 to test Super Dev Mode. My application compiles OK when compiled for production (using GPE) and also runs OK on Dev Mode. However when I try to compile it in Super Dev mode I get errors. workDir:…
manubot
  • 290
  • 2
  • 19
1
vote
1 answer

Can not reflect changes using gwt-maven-plugin superdev

Follow steps in this post, I use gwt-maven-plugin 2.6.0, when I run mvn gwt:run-codeserver it compiled successfully: [INFO] binding: user.agent=safari [INFO] Compiling module com.example.myModule [INFO] Validating units: [INFO] Ignored 3…
July
  • 855
  • 4
  • 11
  • 22
1
vote
1 answer

debugging class members - ReferenceError: myPanel is not defined

I am using Chrome dev tools to step through my GWT MVP app as it renders a View using Super Dev Mode. In the developer tools, I am stepping though the source mapped java code executing my method. I can highlight variables, right click, and "Evaluate…
Stevko
  • 4,345
  • 6
  • 39
  • 66
1
vote
1 answer

GWT Super Dev Mode

I am very concerned for this new alternative for development life-cycle. Actually by this feature we are compiling Java file to Js in a super draft mode but what happens for very large projects that normal compilation takes over 45min (my last…
Nav
  • 4,450
  • 10
  • 53
  • 84
1
vote
3 answers

Running GWT SuperDevMode in IDEA on Win8

I am trying to configure my GWT project to run in SuperDevMode and experience severe problem during server run time. So, I have working "regular" devMode configuration in Intellij IDEA. Created a new GWT configuration in app-servers list. Set the…
alexp
  • 787
  • 5
  • 26
1
vote
2 answers

How do I get GWT Super Dev Mode / SuperDevMode to include my html file?

I was following this answer (thanks Ed) and found that he hadn't completely solved the problem. I've got SuperDevMode / CodeServer up and running, but it doesn't include my html file(s), which makes it kinda useless. Do I really need to run 2 web…
Ryan Shillington
  • 23,006
  • 14
  • 93
  • 108
1 2 3
8 9