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.
我想使用 grails 创建战争,但默认情况下它会在目标目录中创建战争文件。我想将我的战争部署到 Tomcat 中。是否可以?谢谢
在 grails-app/conf/BuildConfig.groovy 文件中,您可以像这样指定战争:
grails.project.war.file = "target/${appName}-${appVersion}.war"
因此,随心所欲地设定目标。虽然,我不建议直接在 Tomcat 中使用 WAR 进行部署。除非您只是为了本地测试而这样做。