Oliver Lehmann
Oliver Lehmann
Imho this issue is still valid and can't be fixed with the current MapStruct release. No matter what conditionExpression is added or what null*CheckStrategy is set - in the generated...
@filiphr not sure thats really the case. Imagine I have the following Mappings: ```java @Mapping(target = "bankAccount.accountNumber", source = "accountNumber") @Mapping(target = "bankAccount.bankCode", source = "bankCode") ``` I currently can't...
@filiphr I see, thanks for explaining it. Would the generator intelligent enough to handle multiple target Objects? `isValid()` is checking the validity for creating `BankAccount` or leaving it null in...
Any news about getting this into main?
Quite a lot of time has passed by for this rather trivial issue. I was just wondering - what holding the pull request back from getting merged?
Es gibt Bibliotheken die können (so gut es eben möglich ist) den vermeintlich gewünschten Charset erkennen. Z.B https://github.com/albfernandez/juniversalchardet ``` final byte[] rawFileContents = ..... final UniversalDetector detector = new UniversalDetector(null);...
So with an out-of-the-box embedded Undertow setup which provides a "default" `io.undertow.servlet.handlers.DefaultServlet` as well as a "dispatcherServlet" `org.springframework.web.servlet.DispatcherServlet` (both part of a `io.undertow.servlet.spec.ServletRegistrationImpl`) requestMatchers(String) can't be used? No idea about...
The default servlet in my case has no path mapping (`mappings` is an empty `ArrayList`) - so how does it affect the registered Spring MVC DispatcherServlet? I assume the Default...
> Based on your feedback, I've updated the Mitigation section in [the security advisory](https://spring.io/security/cve-2023-34035) to suggest that individuals remove unneeded servlets from their application runtime. I see no(?) way in...
@RRGT19 - What embedded servlet container are you using? I assume Undertow? You could start with a breakpoint in [AbstractRequestMatcherRegistry.java#L198](https://github.com/spring-projects/spring-security/blob/33d904d7080dc8118661e4b8e930ffec2c97bb5b/config/src/main/java/org/springframework/security/config/annotation/web/AbstractRequestMatcherRegistry.java#L198) and inspect the content of `registrations` By the way -...