Rob Winch

Results 236 comments of Rob Winch

@grubeninspekteur Switching the `ClassLoader` used to create the cglib classes will cause ``ClassCastException``s to be thrown unless the entire application uses the new `ClassLoader` which will likely lead to other...

@jhoeller Unfortunately, it does not appear to have fixed this specific issue. Updating the [original sample](https://github.com/spring-projects/spring-framework/issues/26266#issue-766468495) to use Spring 5.3.10 does not resolve the issue. I've put together a [branch...

Thanks for providing additional information @nkonev. I'm curious if you are able to reproduce the issue with the original application that was submitted. Perhaps you have GRADLE_OPTS environment variable specified...

@nkonev Hmm..Not sure why you are getting a difference in behavior but good to know. Thanks!

Thanks for sharing the workaround @redhead!

Thanks for the fast reply! I am using `zsh 5.2 (x86_64-ubuntu-linux-gnu)`. I have the lastest oh-my-zsh installed but I have disabled all plugins. The project I'm using leverages Gradle 3.3....

@eriwen Thanks again for your fast response. Task completion works for `./gradlew`, but pressing `gw [TAB]` makes it autocomplete my path instead of tasks. It may be useful to know...

@eriwen No it does not. The following does not complete: ``` gw --statu[TAB] ``` However the following will complete: ``` ./gradlew --statu[TAB] ``` So will the following ``` gradle --statu[TAB]...

Thanks for the follow up :)

This appears to be what is happening: * The user makes a request as a remember me user to /secure/index * Spring Security notices they are not fully authenticated and...