Emontis
Emontis
You're supposed to run `gradle compileJava` again but even then reloading does not work for us.
Related: I used a custom Java agent just fine until recently by setting `org.gradle.jvmargs=[...] -javaagent: [...]` in my `gradle.properties` to facilitate load-time weaving in gradle-tomcat-plugin but either since Gradle 1.11...
@bmuschko Finally had time to nail the culprit down. Turns out it is some change between Tomcat 7.0.50 and 7.0.52. Up until 7.0.50 the `-javaagent` I configured for Gradle gets...
Will do. It would be great and preferable, however, if you can point out/build a way to use the `TomcatLoadTimeWeaver` with `gradle-tomcat-plugin`.
Thats true, but usually you create a `context.xml` in `META-INF` to tell Tomcat to use a different class loader than `org.apache.catalina.loader.WebappClassLoader`, e.g. Spring’s `org.springframework.instrument.classloading.tomcat.TomcatLoadTimeWeaver`. The `-javaagent` was a workaround because...