目前我正在eclipse 3.7中使用GWT 2.4.0开发一个GWT项目。我在Tomcat 7中部署了应用程序。它在过去的两个月中运行良好。
但是,现在我遇到了一个无法追踪问题的问题。以下是“welcomeGWT.html”的源代码。
<!doctype html>
<!--
The DOCTYPE declaration above will set the browser's rendering engine into
"Standards Mode". Replacing this declaration with a "Quirks Mode" doctype may
lead to some differences in layout.
-->
<html>
<head>
<meta name='gwt:module' content='com.haircare101.cesapp.Main=com.haircare101.cesapp.Main'>
<title>101 HairCare: Customer Excellence System</title>
</head>
<body>
<script type="text/javascript" src="com.haircare101.cesapp.Main/com.haircare101.cesapp.Main.nocache.js"></script>
</body>
</html>
当tomcat启动时,我在浏览器中输入相应的URL,它向我显示此页面没有错误(Tomcat日志文件中没有显示错误)。但它无法将我引导到指定的GWT主入口点(当我可以“查看浏览器”浏览器时,我看到了这个源文件)。
**我没有编译错误,没有部署错误或没有运行时错误。
有人能告诉我它为何会停留在这个页面中吗?非常感谢和欣赏!
干杯, 瑞安C.
答案 0 :(得分:0)
除了使用谷歌浏览器,启用firebug调试您的JavaScript并找出错误。显然你有一个数组访问问题。
最有可能的是,它位于您的GWT入口点,而不是javascript(不要忘记所有客户端包代码都转换为javascript)