Bernd

Results 9 comments of Bernd

Yes, that makes sense. Plus I'd like to see a documentation or a pointer to a class that contains all Cukes properties descriptions, such as a description of all possible...

would such a maven plugin be supported within IDEA, Eclipse?

Allright, I found the script that makes these calls, it's in vendor\lib\lib_base.cmd. ``` echo %comspec% | %WINDIR%\System32\find /i "\cmd.exe" > nul && set "CMDER_SHELL=cmd" echo %comspec% | %WINDIR%\System32\find /i "\tcc.exe"...

Guys, you rock! I've put the file into my current setup and it works like a charm! Thanks a lot! I leave it up to you to keep this issue...

The root context problem can be fixed with the following change in JakartaServletWebApplication: ``` private boolean servletContextMatches(final HttpServletRequest httpServletRequest) { // We should not be directly matching servletContext objects because...

This can be reproduced now in the fork at https://github.com/berndgoetz/spring-petclinic. See [the readme there ](https://github.com/berndgoetz/spring-petclinic/blob/main/readme.md)

@mhewedy, thanks for sharing your workaround, we're starting to use it. @rwanderc you've picked this up but never got time to work on it, I assume. What's the status here?

I tried your workaround and it worked. Here's the configuration, for completeness: ``` @EnableWebSecurity(debug = true) @EnableGlobalMethodSecurity(prePostEnabled = true) public class SecurityConfig extends WebSecurityConfigurerAdapter { @Autowired private OAuth2UserService oidcUserService; @Override...