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
3
votes
2 answers

DevMode Launch fails in GWT JSNI project

I have run into a weird issue with gwt dev mode debugging. Following is a JSNI wrapper I am writing https://github.com/sillysachin/GWTAMChart It is fairly small and simple project with lots of JSNI, JavaScriptObject and JSON code. It wraps over…
appbootup
  • 9,537
  • 3
  • 33
  • 65
3
votes
1 answer

How to debug using superdev mode?

I'm trying to follow gwt tutorial and to use superdev mode. I see java source maps in Chrome browser, can put breakpoints but everything what I tried to add to the "watch expresion" window - did not work. So my question is how to use superdev mode…
corsair
  • 658
  • 5
  • 14
3
votes
3 answers

GWT compilation error, images and deferred binding

With three friends, I am developing an application with gwt (2.6). A few weeks ago, we started to use super dev mode. Everything works great, except that two of us cant use ImageBundles. It started when I wanted to include a SuggestBox, which…
Sneaker182
  • 53
  • 1
  • 8
3
votes
2 answers

GWT 2.6.1 + SuperDevMode: stack traces are not deobfuscated on server

Till May this year, I was using GWT 2.5.1 and simple DevMode and was able to send obfuscated exceptions with stack traces to server and deobfuscate them there using symbol maps as per this brilliant article. This helped me a lot. Since June I…
Yuriy Nakonechnyy
  • 3,742
  • 4
  • 29
  • 41
3
votes
1 answer

Multiple source folders for Super Dev Mode

Problem Is there any way Codeserver accept more than one dir in the -src flag? Details I'm trying to separate my source code into folders like this: src widgets utility main I got the regular dev mode to compile my code via the following *.gwt.xml…
ksrb
  • 1,797
  • 12
  • 22
3
votes
0 answers

GWT Super Dev Mode is not finding css

I'm trying to use Super Dev Mode, but after clicking on the Compile button all the styling disappears from my app and the code server outputs messages like: [WARN] not found:…
Niel de Wet
  • 7,806
  • 9
  • 63
  • 100
2
votes
0 answers

Has somebody managed running GWT Super Dev with GWT 2.9.0 and Java 11?

I maintain a GWT project dated back to the good old golden GWT-days in 2009. Meanwhile, a whole bunch of things happened and we like to update the project as far as possible (currently Java8, GWT 2.8.2). Fighting with my dependency-configuration I…
Dan
  • 21
  • 3
2
votes
0 answers

Disabling GWT 2.7.0 Super Dev Mode

I just start sdm with GWT 2.7.0. It seems now we don't need to have Start/Stop bookmarks and it will automatically happens, good news but sometime I want to switch to production mode on my local machine. I cant dot it I just put -Dgwt.compiler.force…
Nav
  • 4,450
  • 10
  • 53
  • 84
2
votes
1 answer

GWT "super dev mode" eclipse debug

Is it possible to debug in IDE for both server and client with Super Dev Mode? I'm fed up with switching back and forth, I love the classic way for debugging. In a debug session you feel like you are in heaven no matter what Client or Server all…
RgooRoo
  • 31
  • 3
2
votes
0 answers

gwt 2.7 super Dev mode and incremental compilation

In gwt 2.7 we have incremental compilation feature that we are all saying wow, As you know it just compiles last changes. My concern is when we have a super-super large project we need to wait 30 mins to start super-dev and have initial compilation…
Nav
  • 4,450
  • 10
  • 53
  • 84
2
votes
1 answer

GWT site works fine but will not render in SuperDevMode

I have spent the day trying to get my GWT 2.6 project to use SuperDevMode. I got to the point where I can get SuperDevMode, codeserver etc fired up in Chrome (Also tested in Firefox, linux and windows) however no amount of research seems adequate to…
spl
  • 510
  • 4
  • 15
2
votes
1 answer

SuperDevMode not working after upgrading to gwt 2.6

I've upgraded gwt 2.5.1 to 2.6 and ever since the super dev mode launches, I can see bookmarklets at myApp:9876, the modules load, but there's no "compile" button when I click on "Dev Mode On". The code server loads ok, I can see permutations being…
monika
  • 489
  • 1
  • 7
  • 17
2
votes
0 answers

GWT Super Dev Mode : Working with Multiple Projects / Inherits

My Project Structure Core Project (it has separate module .xml file) CoreProject.gwt.xml (it will not have any entry point defined) it has abstract entry point class And this core project is used in Project A (It inherits Core Project in…
Sedhu
  • 723
  • 1
  • 11
  • 36
2
votes
2 answers

Disadvantages of including devModeRedirectEnabled=true in production?

I've run GWT 2.6.1 SuperDevMode successfully today, and I'm wondering if we could just leave this line in the .gwt.xml file: In this artical…
Jake W
  • 2,788
  • 34
  • 39
2
votes
4 answers

GWT Dev Mode or Super Dev Mode on Mobile Devices?

Is it possible to debug a GWT mobile app on my iPhone browser? I know that I cannot install the browser developer plugin, but is there any other workaround?
Michael
  • 32,527
  • 49
  • 210
  • 370
1 2
3
8 9