gradle-tomcat-plugin
gradle-tomcat-plugin copied to clipboard
Gradle plugin supporting deployment of your web application to an embedded Tomcat web container
When using the Gradle daemon (the default), I'm unable to run Tomcat twice using the plugin. The first time it starts, there is no problem. I then run "gradle tomcatStop"...
This can be done with the -p option. https://docs.oracle.com/cd/E19146-01/819-2634/abxcd/index.html This is supported by the ant jspc plugin as the package attribute: https://ant.apache.org/manual/Tasks/jspc.html
tomcatJasper does not support the option strictQuoteEscaping as Jasper has. Not able to set the strictQuoteEscaping to false when running the task tomcatJasper
Hi, We trying to use tomcatRun on tomcat7 on a webapp that uses a WebApplicationInitializer and hence has no web.xml. This doesn't seem to work using tomcatRun but does work...
https://github.com/bmuschko/gradle-tomcat-plugin/blob/c103bf4706d58f6c144d1e123bf884ab0adc3a46/plugin/src/main/groovy/com/bmuschko/gradle/tomcat/tasks/TomcatRun.groovy#L116 This function always returns false. Several years ago, this code was refactored to add the if condition ([in this commit](https://github.com/bmuschko/gradle-tomcat-plugin/commit/f0255563ca805abb4c44bd32fb5e8a307cb7c995#diff-3f7c99261d25181f6bacfcc02e117a1b); line: [old]-97 [new]-111). In the original code, the `webXml.exists()`...
Currently `gradle-tomcat-plugin` always uses `org.apache.catalina.loader.WebappLoader` as `ClassLoader` for the web app (see [BaseTomcat7xPlusImpl.groovy#L48](https://github.com/bmuschko/gradle-tomcat-plugin/blob/9eeeaa11987c6b3e0fff0977c5d904693f43bcaf/embedded/src/main/groovy/com/bmuschko/gradle/tomcat/embedded/BaseTomcat7xPlusImpl.groovy#L48) for Tomcat 7/8 and [Tomcat6xServer.groovy#L56](https://github.com/bmuschko/gradle-tomcat-plugin/blob/9eeeaa11987c6b3e0fff0977c5d904693f43bcaf/tomcat6x/src/main/groovy/com/bmuschko/gradle/tomcat/embedded/Tomcat6xServer.groovy#L56) for Tomcat 6). This does not work if web app specifies custom...
Currently (as of 2.2.4) it is only possible to run a single web app. However there are use cases where multiple web apps should be deployed into Tomcat. It would...
Deploy websocket services with tomcat 8.0.33 by tomcatRun task,but response 404 error when send a request from client browser (chrome or ie 11): `WebSocket connection to 'ws://localhost/bboss-websocket/Websocket1Action' failed: Error during...
I am trying to configure Gradle to use Spring Boot with multi modules, this is my structure: ``` ------ Parent ------------ scr/main/java/config ---> Config Files ------------ scr/main/java/App ---> Spring Boot...