在intellij中生成部署描述符(web.xml)

时间:2015-02-04 18:07:09

标签: intellij-idea web.xml

我在我的春季项目中使用gradle,并且每次都需要复制和粘贴web.xml(以及其他基于xml的弹簧配置)的内容!反正自动生成这些文件,就像在eclipse中完成的那样?

3 个答案:

答案 0 :(得分:3)

确定我知道的最佳方法是为不同的xml文件创建一个新模板文件:

Right Click on project > New > Edit File Template > ...

答案 1 :(得分:0)

根据IntelliJ IDEA文档,您可以使用Web构面设置生成部署描述符:Managing deployment descriptors - 至少从版本2016.1

答案 2 :(得分:0)

第一个答案是创建自己的文件模板的好方法。但是Intellij已经为web.xml和Spring文件生成了默认模板。

目前,通过使用alt + ins,Intellij提供了JSP Tag Library DescriptorNew Faces Config FileSpring Config,这对xml based spring configurations很有帮助。

对于web.xml文件,Project Structure (ctrl + alt + shift + s) > Facets > Deployment Descriptors > + > web.xml将为您生成一个web.xml文件。