Rob Bygrave

Results 28 comments of Rob Bygrave

Yeah cool. Thanks for you patience - I think I've got a handle on the issue now, thanks !!! > Both app server run on different time-zone Yup. I got...

> We use extensively a pattern like this FetchGroup can be static final so what I'd expect to see is instead: ```java // create the FetchGroup once static final FetchGroup...

FYI: Just to say the JDK bug is fixed in [22](https://bugs.openjdk.org/browse/JDK-8225377) and back ported to 21.0.2, 17.0.11, 11.0.23: [JDK-8319885](https://bugs.openjdk.org/browse/JDK-8319885) 21.0.2 [JDK-8321934](https://bugs.openjdk.org/browse/JDK-8321934) 17.0.11 [JDK-8322203](https://bugs.openjdk.org/browse/JDK-8322203) 11.0.23

Just checking to see if this PR is not yet merged for a reason or just busy?

Ok, so I think we outline the options available: 1. Keep all inheritance (so DB inheritance & JSON inheritance) 2. Remove the DB inheritance support but keep JSON inheritance (So...

> dev.featurehub.app.common.model.SubscriptionStatus It is mapped using 2 different modes when only one is supported (ORDINAL, STRING or an Ebean mapping) Yeah absolutely. I'll create a PR with some better wording...

Why? Edit: As in what is the motivation? Why would someone want to run this as a plugin?

> .alsoIf(connector.engineConfig.pricingProgram != null) { q -> That looks handy, maybe we should add that to query beans ... > When I add these access paths to the workaround function...

> update quest set progress = to_jsob(?) where id = ? This is a good use case for stateless update. ```java var bean = new Quest(); bean.setId(1); bean.setProgress(...); bean.update(); //...

> click a button and popup a dialog and the dialog is a bean. @DaiYuANg can you show us what your code looks like? I don't know much about JavaFX...