我想在web.xml中添加一个节点。
我尝试使用webxml grails插件,但看起来它无法管理节点。任何帮助或榜样都将不胜感激...
您可以使用自己的web.xml
,其中包含所需的任何内容。跑
> grails install-templates
并编辑/src/templates/war/web.xml
文件(它是一个模板,所以不要删除现有的 Grails 代码)
见 http://grails.org/doc/latest/ref/Command%20Line/install-templates.html
我还不能添加评论,所以就在这里。
通过查看您的最后一条评论,我想您正在寻找grails:exec:
mvn grails:exec -Dcommand=install-templates
许多Grails命令没有直接通过Maven公开等效的包装器。