Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8813225
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:47:39+00:00 2026-06-14T03:47:39+00:00

I just want to run a simple app using superDevMode to know its benefits.

  • 0

I just want to run a simple app using superDevMode to know its benefits. The CodeServer is getting started successfully, but it is complaining there is no gwt modules to compile in the UI. I followed the following steps.

  1. I started with GWT Default code which will be generated when we create the new project. I then converted it to Maven project.
  2. I then modified my gwt.xml file to add the linker. Here is the copy my gwt.xml

    <module rename-to='superdevmode'>
    <inherits name='com.google.gwt.user.User' />
    <inherits name='com.google.gwt.user.theme.clean.Clean' />
    <entry-point class='superDevMode.client.SuperDevMode' />
    <add-linker name="xsiframe" />
    <set-configuration-property name="devModeRedirectEnabled"
    value="true" />
    </module>
    
  3. I added the codeserver jar and set the proper classpath.

Codeserver is getting started successfully.

   The code server is ready.
   Next, visit: http://localhost:9876/

When I launch the UI am getting the following
enter image description here

But when I click on Dev Mode On, am getting the following

enter image description here

I don’t know what I am doing wrong. My POM entry looks like this.

              <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>superDevMode</groupId>
<artifactId>superDevMode</artifactId>
<version>0.0.1-SNAPSHOT</version>
             </project>

Correct me if i am wrong.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T03:47:41+00:00Added an answer on June 14, 2026 at 3:47 am

    Update: v2.6 looks like it will have a better example launcher for superdevmode (see under superdevmode at http://www.gwtproject.org/release-notes.html#Release_Notes_2_6_0_RC1 ) 2.6 will be released any day now. I am using RC3 and it seems fine. More here:


    While I appreciate the detail on how SuperDevMode works in Thomas’ article, what is really needed is a step-by-step guide with some trouble shooting.

    Here is a step-by-step. There are so many places to go wrong and the SuperDev mode page is not very specific. Hopefully this makes it clear:

    1. Configure your module .gwt.xml file with the additional lines (you should place this at the bottom of you module definition, ie just before </module>):
    <add-linker name="xsiframe"/>
    <set-configuration-property name="devModeRedirectEnabled" value="true"/>
    <!-- enable source maps -->
    <set-property name="compiler.useSourceMaps" value="true" />
    
    1. Run the standard GWT compile process – in Eclipse this is “GWT Compile Project…” – this is what you typically do when you are deploying GWT code. No doubt you have a maven or ant command that does this as well.

    2. Start a regular webserver that you’d normally use when developing your GWT code. For example, the one you used normal DevMode with. I’ll call this one localhost:8888 – I’m going to presume the page you’d normally launch is index.html, so http://localhost:8888/index.html shows your GWT app. (you probably have ?gwt.codesvr=127.0.0.1:9997 in that URL normally)

    3. Start the SuperDevMode server (see the bottom of this answer for two methods). You now have two webservers running – on different ports. So, lets say SuperDevMode is running on localhost:1234. At the bottom of this answer I posted some ways to start SuperDevMode.

    4. Point your browser to the SuperDevMode server, so http://localhost:1234 . Follow the instructions to and copy the two shortcuts to your addressbar

    5. Now, point your browser to the regular webserver, http://localhost:8888/index.html – do not add ?gwt.codesvr=127.0.0.1:9997 to the URL – that is only for NotSuper DevMode. (ie regular DevMode)

    6. Click on the shortcut link “DevMode On” that you copied in Step 5. It should ask you to choose a module to compile, click the Compile button.

    7. If you want sourcemaps (see your java source code in the Chrome script browser) you must turn it on in Chrome. In my version of Chrome (Ubuntu) there is a little gear on the bottom right of the Chrome console (Inspect Element, then look on the bottom right of the browser window). Click that and find “Enable Source Maps”. Reload the page and it should now show you the Source codes.


    Two ways to launch super dev mode:

    From the command line

    java -classpath $GWT_HOME/gwt-codeserver.jar:$GWT_HOME/gwt-dev.jar:$GWT_HOME/gwt-user.jar:app:./lib/*  com.google.gwt.dev.codeserver.CodeServer \
      -bindAddress 0.0.0.0 -port 1234 -src src -workDir work com.foo.MyModule
    

    From an Eclipse Laucher

    In Eclipse, create a new Java Application Launcher (not a Web Application launcher!) with the following configuration:

    Main Class:

    com.google.gwt.dev.codeserver.CodeServer
    

    Program Arguments:

    -src src -workDir ${workspace_loc:MyProject}/codeserver -port 1234 com.foo.MyModule
    

    -workDir is optional

    VM arguments ( These may be needed depending on the size of your project. If the superdevmode “Compile” button (in the browser) disappears immediately after you click and nothing seems to happen, it may be crashing because of insufficient memory)

    -Xmx1024m -Xms512m
    

    Classpath: add gwt-codeserver.jar, gwt-dev.jar and gwt-user.jar to the launch classpath (these jars are found in the GWT SDK installation directory).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've just started using node, I want to build a single page web app
I just want to run the HelloServlet by the url: http://localhost:8080/HelloServlet . but it
Just want to know if publishing an application on Google play is allowed using
I want to run an Android application by using phonegap. I want to just
I'm trying to write a simple Fibonacci web server using WAI but I just
I just made a very simple test app using documentation from MSDN. All I
I just want that my program or method should run at specific date and
I just want to find out how to run two WPF windows (one in
When I run this, an empty title bar is displayed. I just want to
Just want to know how to read an attribute of a parent node from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.