I want to make an homepage with GWT that let the user log in and then I want to redirect the user to another page, that will show a table or something else (the real part of the webapp). This will also be entirely coded with GWT. Now, I'm programming with netbeans 6.7 and I don't know how to manage different entryPoint (the home and the webapp) because it seems that I can have only one entry point at time in a single project... I don't want to split the app in two different projects because the two GWT entryPoints need to access to the same database... How can I do? Can you tell me some tip, or post a link to a tutorial?? I
1 回答
0
GWT4NB 不支持 Ant 项目中的多个入口点。
您的替代方案是:
- 带有 Codehaus GWT 插件项目的 Maven 支持多个入口点。自 2.6.7 ( https://gwt4nb.dev.java.net/servlets/ProjectDocumentList?folderID=7081&expandFolder=7081&folderID=0 )起,GWT4NB 对 Maven 的支持有限
- 创建 2 个 Web 项目/战争并使用 Java EE 模式配置数据库连接
- 将登录对话框编写为 GWT 对话框
于 2009-09-07T19:38:06.960 回答