Janne

Results 19 comments of Janne

Can anybody (@marcusdacoregio?) post an example how the correct way would be to write the Example 1 in https://docs.spring.io/spring-security/reference/6.0/servlet/authorization/expression-based.html#el-access-web-beans ? Currently it is invalid: ``` http .authorizeHttpRequests(authorize -> authorize .requestMatchers("/user/**").access("@webSecurity.check(authentication,request)")...

Actually, as I found out, the `JavaExec` task type supports the `--args` command line parameter (even without `application` plugin). So this should work: ``` task playwright(type: JavaExec) { mainClass =...

> Hey @ddaypunk , this works. Can you share an example on how it can be converted to a Gradle kotlin DSL task so that we can run the codegen...

@quan-nm-nexlesoft Firefox does not support WebGL in headless mode. Make sure that you run in headed mode, and you will need a virtual framebuffer for that (xvfb). Prepend your test...

> @jhyot I just uploaded a beta version of 2.3 which has some significant changes, including introducing `navigator.pdfViewerEnabled`. I've tested against all major browsers, locally and via BrowserStack. Everything works...

`@Inherited` only works if you include the annotation on a superclass. I am talking about the so-called "meta-annotations" where you annotate another annotation. Like here: https://www.logicbig.com/tutorials/spring-framework/spring-web-mvc/meta-annotation.html or here: https://github.com/spring-projects/spring-boot/blob/master/spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/web/servlet/WebMvcTest.java For...

Great. I am in the preliminary stages of evaluating this plugin whether it works for us. If that is successful, I'll get back here and try to implement this enhancement.

The workaround is to manually edit the state file, to add the default `false` values for the three config keys in question.

Definitely 100% support for this. Please don't use the very old and broken `Date` API, modern code should always use the `java.time` API.