Andrew Guibert
Andrew Guibert
I think we could add the following methods: ``` withDateTimeFormat(String dateFormat, Locale locale) withZonedDateTimeFormat(String dateFormat, Locale locale) ``` So given a particular time-based object (e.g. java.util.Date, LocalDate, LocalDateTime, ZonedDateTime, etc),...
I think this is a valid expectation. In Yasson we use a HashMap(unsorted) by default, but if the sorted strategy is specified we can use a sorted collection like TreeMap...
For timer support, perhaps CDI could introduce some mechanism to "observe" an interval of time? I propose we define a new annotation`@Schedule` inspired by [`@javax.ejb.Schedule`](https://openliberty.io/docs/ref/javaee/8/#package=javax/ejb/package-frame.html&class=javax/ejb/Schedule.html) that would have many of...
@ederks85 Quarkus has defined its own [`StartupEvent` ](https://github.com/quarkusio/quarkus/blob/master/core/runtime/src/main/java/io/quarkus/runtime/StartupEvent.java)which can be observed like this: ```java import io.quarkus.runtime.StartupEvent; @ApplicationScoped class CoolService { void startup(@Observes StartupEvent event) { } } ``` Perhaps we...
I agree with @rmannibucau regarding timers being out of scope for CDI core. I'm working on prototyping a portable CDI extension that will allow people to do[ what I described...
The EE Concurrency API has the following issue open for implementing an `@Schedule` annotation: https://github.com/eclipse-ee4j/concurrency-api/issues/98 I added my proposal/POC to that issue, and I think EE Concurrency would be the...
Thanks for the ideas @sdaschner, I implemented most of them and they are now hosted here: https://aguibert.github.io/liberty-cheat-sheet/ For the getting started sample I showed Servlet because that's what our archetype...
yea, I renamed the repo from `liberty-cheat-sheet` to `openliberty-cheat-sheet` so the new URL is: https://aguibert.github.io/openliberty-cheat-sheet/
Feedback from @gcharters: > We've done this an the main issue is connecting to an unknown network - some people don't like the idea. We take old phone along to...
Docker version is complete, Kube is in progress still