我正在使用 gradle-tomcat-plugin 在一个简单的 Web 应用程序上运行 tomcat。我想要做的是将根 Web 应用程序目录从更改src/main/webapp/
为WebContent/
tomcat {
httpPort = 8080
httpsPort = 8081
enableSSL = false
jasper {
uriroot = file('WebContent')
}
}
这在我运行时根本不起作用,gradle tomcatRun
它仍然映射到src/main/webapp/
.
有什么建议么?