gwt-super-dev-mode

Super Dev Mode doesn't detect changes after recompiling

匆匆过客 提交于 2019-12-23 12:27:30
问题 I set up new eclipse workspace and downloaded project from SVN. I launched Super Dev Mode (gwt-2.7.0, chrome browser) and when trying to recompile it says "skipped compile because no input files have changed". It works well in old workspace but it doesn't in new one. I used the same glassfish domain (I undeployed old application, restarted glassfish, used maven clean, maven install options on project in new workspace and deployed ear file to glassfish). It works when it's started for the

GWT - How to view java exception stack trace in super dev?

孤者浪人 提交于 2019-12-20 15:08:35
问题 I'm using GWT Super Dev and I activated source maps in Chrome. Although I can see the Java classes in the Sources tab, I can't figure out how to view the full stack trace of unhandled exceptions. So how do I do that ? 回答1: There is an open issue for it: http://code.google.com/p/google-web-toolkit/issues/detail?id=7460 However I've come to a workaround where I don't use the code server, but I integrate source map creation into a Maven-based project via a Maven profile. See this archetype for

GWT SuperDev - Can't find GWT Modules

烈酒焚心 提交于 2019-12-13 13:06:55
问题 I have followed the steps given on this page - getting-started-with-the-superdevmode but I am still getting message - Can't find any GWT Modules on this page. I did some more googling but could not find any solution until now. I am using GWT 2.6.1 and eclipse kepler 64 bit on ubuntu. Here are the steps I did. Created a new Web app project for GAE, using GWT 2.6.1 and GAE sdk 1.9.6. Go to Run configurations. Create a new configuration for a "Java Application". Change the main class, Argument

How to debug using superdev mode?

两盒软妹~` 提交于 2019-12-12 14:36:01
问题 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 for debugging? I have created project as described in the tutorial ./webAppCreator -out MyWebApp com.mycompany.mywebapp.MyWebApp and run ant superdevmode ant hosted here is screen-shot what I see in "developer tools" window As you can see -

Migrating Classic Dev Mode to Super Dev Mode using GWT 2.5.1

限于喜欢 提交于 2019-12-12 01:29:00
问题 I find lot of stackoverflow question related to this How to migrate a a custom sublass of GWT DevMode to GWT 2.7.0 Super dev mode but unable to solve my issue.I am migrating classic dev mode to super dev mode using GWT 2.5.1 .I have lot of dependency maven project which is included in User Entries under Classpath tab .Also i added com.google.gwt.dev.codeserver.CodeServer as main class and gwt-codeserver-2.5.1 jar under Classpath tab.While launching the apps its getting complied but when i

GWT Super Dev Mode

你说的曾经没有我的故事 提交于 2019-12-08 08:19:35
问题 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 project) ?! every time I change something in UI I should recompile all codes?! Optimistic speaking, it should take over 5mins to recompile in super mode! Please let me know if I am wrong. Regads, 回答1: The difference between SuperDevMode and compiling in

Disabling GWT 2.7.0 Super Dev Mode

你。 提交于 2019-12-07 18:53:16
问题 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 in front ot "maven clean install" or just add <superDevMode>false</superDevMode> in maven POM but just getting "Could not load webapp from Super Dev Mode server ..." !!!! How Can I avoid runing SDM ? Thanks 来源: https://stackoverflow.com/questions

Multiple source folders for Super Dev Mode

余生颓废 提交于 2019-12-07 17:16:56
问题 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 files: src/MyProject.gwt.xml <module> <inherits name='com.google.gwt.user.User' /> <inherits name="com.my.project.Widget"/> <entry-point class="com.my.project.Test" /> </module> widgets/Widgets.gwt.xml <module> <inherits name='com.google.gwt.user

How enable production mode in GWT 2.7 application

家住魔仙堡 提交于 2019-12-06 08:17:21
I would like to deploy my GWT 2.7 application on my server through gwt-maven-plugin and jenkins. But, after compile process, when I launch my application, I've this error message : Couldn't load APPLICATION_NAME from Super Dev Mode server at http://MY_IP:9876. Please make sure this server is ready. Indeed, the super dev mode is enabled by default since 2.7. So, how disable it to use production mode ? Ok thank you very much for your comment. Indeed, my problem concerned the *.nocache.js and *.devmode.js files. I started my project (my first one in GWT) in 2.6 version and these files were

How to get GWT Super Dev Mode to work with IntelliJ

人盡茶涼 提交于 2019-12-03 07:12:16
问题 I had a lot of issues getting Super Dev mode to work with IntelliJ. This question, and my answer below, are to document how to do this, for anyone else who might come across this in future (and for my own reference): 回答1: IntelliJ IDEA 14 EAP now offers improved support for GWT Super Dev Mode. You will need to use the JetBrains IDE Plugin for JavaScript debugging on Chrome, and install GWT 2.6.1. You can then enable Super Dev Mode support directly under "Run configurations" - for more