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 插件启动的开发者模式软件。如何提供其他参数?
例如,我想将 bindAddress 传递给 gwt 插件,以便可以从远程机器进行调试:
我运行这个命令:
mvn gwt:debug -Dgwt.noserver=true
能不能在pom中加参数来绑定地址。
如果你愿意,你可以同时设置bindAddress和noserver在你的 POM 中:
bindAddress
noserver
<bindAddress>0.0.0.0</bindAddress> <noServer>true</noServer>
见gwt-maven-plugin