Ruslan Stelmachenko
Ruslan Stelmachenko
Yes, I think it does make sense. You are talking about the situation when obtained `Lock` instance is shared between some bean instances/threads (of the same application instance) etc. And...
Now I use: ``` MultiResult result = expect.expect(anyOf(contains("reconfigure"), regexp("# $"))); if (result.getResults().get(0).isSuccessful()) { // The output contains "reconfigure" string. } else { // The output doesn't contains "reconfigure" string, but...
Don't worry! The `result.getResults().get(0).isSuccessful()` solution works fine. I know that MultiResult implements Result, but I do not understand how it can help me to recognize which matcher is matched from...
### The workaround: I created a subclass of `LocalValidatorFactoryBean` and exposed it as a bean. That subclass just ignores the exception thrown from `org.springframework.validation.beanvalidation.SpringValidatorAdapter#getRejectedValue` method and uses `violation.getInvalidValue()` directly instead:...
> deprecate the Vetur VSCode extension in favour of Volar As I see in the [linked discussion](https://github.com/microsoft/vscode-discussions/discussions/1#discussioncomment-8648185) the `Volar` is deprecated in favor of the `Vue - Official` extension. Moreover,...
Ahh, I see! Thank you! The confusion is due to the fact that the deprecated extension I linked is named [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) (so, it also does have `Volar`...
Most reports here are about `` tag. I had similar problem with `` tag. With these file locations: ``` src/main/resources/db/changelog/db.changelog-2.0.xml src/main/resources/db/changelog/data/country.csv ``` And `db.changelog-2.0.xml` contains: ``` ``` With Liquibase **4.17.2**...
> That is to say, `ContainerA -> ContainerB` could technically be written as 3 steps: > > `ContainerA -> UserRequest` > `UserRequest -> UserDto` > `UserDto -> ContainerB` I'm afraid...
@ro0sterjam > What I mean is, theoretically one could write: > > ``` > default T unwrap(ContainerA value) { > return value.get(); > } > > default ContainerB wrap(T value)...
@ro0sterjam Yes, you got it right. If we have: ```java class Page { List items; int pageNumber; long totalCount; } class PageDto { List items; long totalResults; } ``` Then...