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.
GWT 编译器是否有一个独立于正常编译时类路径的“类路径”概念?GWT 应用程序(及其内部工作原理)是否具有与正常 JRE 运行时类路径分开的自己的类路径的概念?
GWT 有模块的概念。每个模块都会声明其源路径中包含哪些包。模块可以扩展其他模块。GWT 编译的每个类都必须位于主模块扩展的一个模块的源路径中。
源路径与模块相结合的概念为 GWT 编译器构建了某种单独的类路径。但它与java类路径无关。