Is it possible to deploy a GWT Module to a subdirectory of the /war folder? I tried using rename-to=开发者_运维技巧"folder/modulename" but that does not seem to work.
It is possible. Don't change your rename-to attribute, keep it as-is. Just copy the generated folder to a sub-directory in your war.
For example, if your module is named as foo, GWT will create a top level folder named foo. This foo is usually inside the war directory, like this /war/foo. You can move it to a sub-directory like /war/my-sub-dir/foo and that's all there is to it.
精彩评论