将<servlet>添加到Grails 2.1 </servlet>中的web.xml中

时间:2012-12-26 15:05:16

标签: grails web.xml grails-plugin grails-2.1

我想在web.xml中添加一个节点 我尝试使用webxml grails插件,但看起来它无法管理节点。任何帮助或示例都是apreciated ......

2 个答案:

答案 0 :(得分:7)

您可以使用自己的web.xml,包含您想要的任何内容。运行

> grails install-templates

并修改/src/templates/war/web.xml文件(这是一个模板,所以不要删除现有的Grails代码)

请参阅http://grails.org/doc/latest/ref/Command%20Line/install-templates.html

答案 1 :(得分:1)

我还无法添加评论,所以就这样了。

通过查看您的上一条评论,我认为您正在寻找 grails:exec

mvn grails:exec -Dcommand=install-templates

许多Grails命令没有直接通过Maven公开的等效包装器。