我在Eclipse Juno的GWT下开发了整个项目。在开发并测试之后(它工作正常)我决定改变一下根包结构。
这
sk.jakub
到
sk.jakub.app
没什么大不了的。我更改了.xml文件中的所有引用。但我仍然得到以下错误:
Loading modules
sk.jakub.Editor1
[ERROR] Unable to find 'sk/jakub/Editor1.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
[ERROR] shell failed in doStartup method
问题显然是GWT试图在旧的包结构下找到Editor1.gwt.xml。包结构未更新。
我以为我忘了更新入口点模块设置,但它们没问题。所以我不明白为什么会这样。
有关如何解决此问题的任何建议吗?
非常感谢你的回答:)
更新: 这是我的部署描述符(对我来说似乎很好):
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee">
<!-- Context params -->
<context-param>
<param-name>contextConfiguration</param-name>
<param-value>WEB-INF/*-context.xml</param-value>
</context-param>
<!-- Listeners -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Servlets -->
<servlet>
<servlet-name>spring4gwt</servlet-name>
<servlet-class>org.spring4gwt.server.SpringGwtRemoteServiceServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>spring4gwt</servlet-name>
<url-pattern>/editor1/app/componentService</url-pattern>
</servlet-mapping>
<!-- Default page to serve -->
<welcome-file-list>
<welcome-file>Editor1.html</welcome-file>
</welcome-file-list>
</web-app>
答案 0 :(得分:3)
在日食中,得到run, run configurations, select your project, select the arguments tab.
在程序参数窗口中,确保您有更新的条目。我想你需要:
com.google.appengine.tools.development.gwt.AppEngineLauncher sk.jakub.app.Editor1
答案 1 :(得分:1)
检查您的GWT编译器设置。您必须指定包括包的GWT模块。重构包结构时,您必须更正这些设置。
在Eclipse中编译时,GWT“编译”对话框列出了“入口点模块”。检查模块“Editor1”是否已列出且包装结构是否正确。
在开发模式下作为Web应用程序启动时,如果模块列表正确,则必须检查选项卡“GWT”和“Arguments”。
同样适用于蚂蚁构建。