gwt 2.6.1, smartgwt 6.0 pro, build 2017-05-31
Hello,
due to some issues (which i'll ask about in another thread), i thought i'd try out superdev mode.
I develop with smartgwt in Intellij for several years. I have a "configuration" that works fine, and there's a button that says "enable super development mode". Whan i click it, it stops working. I get to my jsp, and i come as far as "compiling 'module'... but then i get this error in the console:
There is one old thread here on this topic, which basically talks about configuring the project correctly. I believe i have done so, especially since classic dev mode works, and i have double checked most stuff i can think of.
I was wondering if there is something you can think of to check, or if there's some location i can look at.
I can also see this in the log:
Problem loading builtinTypes.xml
Exception when loading from /Users/user/Library/Caches/IntelliJIdea2017.1/gwt/mymodule.5e273cec/mymoduleweb.f1919e44/run/www/mymodule/sc/system/schema/builtinTypes.xml:
java.io.FileNotFoundException: /Users/user/Library/Caches/IntelliJIdea2017.1/gwt/mymodule.5e273cec/mymoduleweb.f1919e44/run/www/mymodule/sc/system/schema/builtinTypes.xml (No such file or directory)
this is my gwt.xml:
If you have any pointers at all, much appreciated. Again, it works in classic dev mode.
Hello,
due to some issues (which i'll ask about in another thread), i thought i'd try out superdev mode.
I develop with smartgwt in Intellij for several years. I have a "configuration" that works fine, and there's a button that says "enable super development mode". Whan i click it, it stops working. I get to my jsp, and i come as far as "compiling 'module'... but then i get this error in the console:
Code:
javax.servlet.ServletException: DataSource 'location' failed to load due to an exception on the server: Corrupt DataSource detected - required files under {isomorphicDir}/system/schema may be missing or unreadable. This typically results from skipping installation steps. If using SmartGWT, verify your <inherits> and run a GWT compile
I was wondering if there is something you can think of to check, or if there's some location i can look at.
I can also see this in the log:
Problem loading builtinTypes.xml
Exception when loading from /Users/user/Library/Caches/IntelliJIdea2017.1/gwt/mymodule.5e273cec/mymoduleweb.f1919e44/run/www/mymodule/sc/system/schema/builtinTypes.xml:
java.io.FileNotFoundException: /Users/user/Library/Caches/IntelliJIdea2017.1/gwt/mymodule.5e273cec/mymoduleweb.f1919e44/run/www/mymodule/sc/system/schema/builtinTypes.xml (No such file or directory)
this is my gwt.xml:
Code:
<module rename-to="mymodule"> <inherits name='com.google.gwt.user.User'/> <inherits name="com.smartgwt.tools.SmartGwtTools"/> <inherits name="com.smartgwtee.SmartGwtEENoTheme"/> <!--inherits name="com.smartclient.theme.enterprise.EnterpriseResources"/--> <!--inherits name="com.smartgwtpro.tools.Tools"/--> <!--inherits name="com.smartgwtee.SmartGwtPro"/--> <!--inherits name="com.smartclient.theme.simplicity.Simplicity"/--> <!--inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlue"/--> <inherits name="com.google.gwt.i18n.I18N"/> <inherits name="com.google.gwt.maps.Maps"/> <!-- English language, independent of country --> <extend-property name="locale" values="en"/> <!-- Swedish language --> <extend-property name="locale" values="sv_SE"/> <entry-point class='com.karpet.mymodule.client.mymodule'/> <!-- Set to compile fewer permutations to reduce build time in development Options are: ie8,ie9,ie10,gecko,gecko1_8,safari,opera --> <!--set-property name="user.agent" value="gecko1_8, safari"/--> <set-property name="user.agent" value="gecko1_8,ie8,ie9,ie10,safari"/> <!-- Specify the paths for translatable code --> <source path='client'/> <source path='gwtcommons'/> <add-linker name="xsiframe"/> </module>
Comment