使用模块和GXT4启动时出错

时间:2016-03-04 12:20:58

标签: java gwt gxt

我正在尝试在我的GWT项目中使用GXT4,但是当我启动应用程序时它会给我一个错误。我从他们的网站上关注了GXT指南,并在我的项目模块中添加了继承,但它给了我这个错误:加载继承的模块'com.sencha.gxt.core.Core'                   [错误]第67行:意外元素'资源'                   [ERROR]解析XML时失败

PS我不是在使用maven。有什么问题?

我的模块

 <module rename-to='myproject'>
  <!-- Inherit the core Web Toolkit stuff.                        -->
  <inherits name='com.google.gwt.user.User'/>

  <!-- Inherit the default GWT style sheet.  You can change       -->
  <!-- the theme of your GWT application by uncommenting          -->
  <!-- any one of the following lines.                            -->
  <!--  <inherits name='com.google.gwt.user.theme.clean.Clean'/>-->
	<inherits name='com.google.gwt.user.theme.standard.Standard'/> 
	<inherits name="com.google.maps.gwt.GoogleMaps" />
	<inherits name='com.sencha.gxt.ui.GXT' />
	
	 <stylesheet src="reset.css" />
  <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
<!--   <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->   

  <!-- Specify the app entry point class.                         -->
  <entry-point class='com.myproject.project.client.Myproject'/>
  <!-- Specify the paths for translatable code                    -->
  <source path='client'/>
  <source path='shared'/>

  <!-- allow Super Dev Mode -->
  <add-linker name="xsiframe"/>
</module>

0 个答案:

没有答案