Do you want your ad here?

Contact us to get your ad seen by thousands of users every day!

[email protected]

Schedule for Foojay Virtual JUG Tour

  • February 22, 2021
  • 4711 Unique Views
  • 2 min read
Table of Contents

As announced last month, to celebrate the OpenJDK and Foojay.io as a vendor-neutral community platform for its users, we’re kicking off the Virtual Foojay JUG Tour to be held throughout March and April.

And here's the schedule, note that it will change as more meetups are confirmed, and if your JUG is missing, i.e., you'd like to still be included in the tour, no worries, let's see what can be done, simply contact JFrog's Ari Waller (ariw at jfrog dot com), Foojay's Event Manager, and specify a date and time (and preferred topics) for March or April.

March

  • 1 March, Monday: Java User Group Munchen, Simon Maple (Snyk)
    "Stranger Danger: Finding Security Vulnerabilities Before They Find You!" (Details, click here.)
  • 2 March, Tuesday: Java User Group Bonn, Gerrit Grunwald (Azul)
    "Disco API: OpenJDK Distributions As A Service" (Details, click here.)
  • 10 March, Wednesday: Denver Java User Group, Steve Chin (JFrog)
    "Modern Java Clients with JavaFX: The Definitive Guide" (Details, click here.)
  • 11 March, Thursday: St. Louis Java User Group, Rudy de Busscher (Payara)
    "Creating a Kubernetes Operator in Java" (Details, click here.)
  • 13 March, Saturday, Hyderabad JUG, Nicolas Frankel (Hazelcast)
    "Migrating from Imperative to Reactive in the Cloud" (Details, click here.)
  • 17 March, Wednesday: Virtual JUG, Frank Delporte (Toadi)
    "Future of Java on Raspberry Pi: Java, JavaFX, and More" (Details, click here.)
  • 23 March, Tuesday: Sillicon Valley JavaFX JUG, Almas Baimagambetov, (Brighton University)
    "Practical Introduction to FXGL Game Engine" (Details, click here.)
  • 25 March, Thursday: Chicago JUG, Melissa McKay (JFrog)
    "Level Up Your Java Containers" (Details, click here.)
  • 29 March, Monday: Jozi JUG, Brian Vermeer (Snyk)
    "Secure Docker Containers for Java Developers" (Details, click here.)

April

  • 6 April, Tuesday: Coimbra JUG, Steve Chin (JFrog)
    "DevOps Tools for Java Developers" (Details, click here.)
  • 8 April, Thursday: Manchester JUG, Simon Ritter (Azul)
    "Getting the Most from Modern Java" (Details, click here.)
  • 13 April, Tuesday: Bulgaria Java User Group, Steve Chin (JFrog)
    "DevOps Tools for Java Developers" (Details, click here.)
  • 15 April, Thursday: KnoxJava JUG, Ivar Grimstad (Eclipse Foundation)
    "Jakarta EE 9 and Beyond" (Details, click here.)
  • 20 April, Tuesday: Atlanta JUG, Cedrick Lunven (DataStax)
    "Kubernetes and the Data Gateway Pattern" (Details, click here.)
  • 20 April, Tuesday: Central Iowa JUG, Simon Ritter (Azul)
    "Getting the Most from Modern Java" (Details, click here.)
  • 21 April, Wednesday: Java User Group Japan, Simon Maple (Snyk)
    "Stranger Danger: Finding Security Vulnerabilities Before They Find You!" (Details, click here.)
  • 22 April, Thursday: NYJavaSIG, Almas Baimagambetov, (Brighton University)
    "Practical Introduction to FXGL Game Engine" (Details, click here.)
  • 22 April, Thursday: Hamburg JUG, Johan Vos (Gluon)
    "Cross-Platform User Interface Development in Java with OpenJFX" (Details, click here.)
  • 27 April, Tuesday, Garden State JUG, Sven Ruppert (JFrog)
    "Functional Reactive with Core JDK" (Details, click here.)
  • 28 April, Wednesday, Silesia JUG, Roberto Cortez (Red Hat)
    "Do You Know These Libraries?" (Details, click here.)
  • 29 April, Thursday, Norway JUG, Sven Ruppert (JFrog)
    "Functional Reactive with Core JDK" (Details, click here.)

Do you want your ad here?

Contact us to get your ad seen by thousands of users every day!

[email protected]

Comments (2)

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Tobiloba avatar

Tobiloba

3 years ago

I see that you save the point of interest as text in the DB but the response gotten from ChatGPT is JSON. Does this mean you convert the response into string using libraries like gson before saving it in the database?

-8

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Denis Magda avatar

Denis Magda

3 years ago

Hey, The response is a String object in the JSON format [1]. The repository takes this JSON string as is and stores to the database [2]. Presently, Spring Data auto-generates the CREATE TABLE statement on the startup and sets the "point of interest" column's type to "text" (or "varchar", don't remember). However, it's always possible to ask Spring Data to use the "json" or "jsonb" type for the column if you wish to query the JSON at the database level. Finally, Vaadin displays a list of PointsOfInterests. Those are generated using the org.json library [3]. Let me know if you have other questions. Hope this helps. [1] https://github.com/YugabyteDB-Samples/budget-journey-gpt/blob/main/src/main/java/com/yugabyte/com/TripsAdvisorService.java#L103 [2] https://github.com/YugabyteDB-Samples/budget-journey-gpt/blob/main/src/main/java/com/yugabyte/com/TripsAdvisorService.java#L74 [3] https://github.com/YugabyteDB-Samples/budget-journey-gpt/blob/main/src/main/java/com/yugabyte/com/TripsAdvisorService.java#L114

12

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard