Retro & Chill
Retro & Chill
We're also running into this issue with a constant containing a multiline string
@soutaro's solution works like a charm, I think the only limitation is that it is unable to handle an Optional that is passed a boolean value. (Basically, because the check...
The case-when solution doesn't seem to work as that check doesn't seem to properly cast the nil off in the else block. It was a nice idea though
It does appear that .nil? does work when the value is set to a local variable however, just not when it's an instance variable
I would very much like if this option was added. I have multiple instances of where a single service class implements multiple interfaces that I am using
> Honestly, a PR with 300 files changed is undesirable for many reasons, especially when working as part of a team. I'm willing to bet (& I'm not a gambling...
Entity view inheritance and FetchType.SUBSELECT with @EmbeddedId throws UnsuportedOperationException
I can provide a similar version that strips out any information pertinent to the project, but I can at least provide the general idea as to what is happening. This...
Entity view inheritance and FetchType.SUBSELECT with @EmbeddedId throws UnsuportedOperationException
@beikov I just tried that but I got the same result in the same location. It seems like the issue is coming from the generated HQL and since it sees...
Entity view inheritance and FetchType.SUBSELECT with @EmbeddedId throws UnsuportedOperationException
Gladly: This is the view for the base class: ```java @EntityView(BaseEntity.class) @EntityViewInheritance public interface BaseEntityView { @IdMapping CompositeIdView getCompositeId(); int getDataField(); } ``` Here is the ID ```java @EntityView(CompositeId.class) public...
I also want to know this, as I need a way to apply patches to a downloaded directory