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/
。
助言がありますか?