Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
web.xml <welcome-file-list>GWT 应用程序的每个模块之间的关系是什么,EntryPoint以及war/<myapp>/<myapp>.html当一个应用程序有多个模块时是什么关系?有超过 1 个<welcome-file>吗?在这种情况下,这三者如何相互关联?
web.xml
<welcome-file-list>
EntryPoint
war/<myapp>/<myapp>.html
<welcome-file>
如果在用户请求中未指定任何页面,则欢迎文件是服务器所服务的。例如,如果用户在其浏览器中输入 www.your-domain.com/,则会提供欢迎文件。但是,如果用户输入 www.your-domain.com/MyModule.jsp - MyModule.jsp 将被提供。
模块通常有一个入口点,但它们不是必须的。您可能拥有由其他模块继承的模块,并且没有自己的入口点。如果一个模块确实有一个入口点,那么应该有一个像 MyModule.html 或 MyModule.jsp 这样的主机页面来加载 MyModule。