Java Conferences in 2025
- January 01, 2025
- 4409 Unique Views
- < 1 min read
Also see javaconferences.org, a subset of which is below.
January
- 15: Voxxed Days CERN, Switzerland
- 17: Voxxed Days Ticino, Switzerland
- 23, 24, 27, 28: Virtual JChampions Conference
February
- 3 - 5: Jfokus, Stockholm, Sweden
- 26 - 28: ConFoo, Montreal, Canada
- 27, 28: DevWorld, Amsterdam, Netherlands
March
- 4 - 6: Devnexus, Atlanta, Georgia
- 11: Blipz on the Radar, Utrecht
- 13: Duke Turns 30 Java Celebrations
- 18 - 20: Oracle's JavaOne
- 25: Voxxed Days Zurich, Switzerland
- 26 - 27: Voxxed Days Bucharest, Romania
April
- 1 - 3: JavaLand, Nürburgring, Germany
- 3: Voxxed Days Amsterdam, Netherlands
- 7 - 11: QCon London, UK
- 10 -12; Devoxx Greece
- 16 - 18: Devoxx France
- 22 - 25: GIDS, India
May
- 5 - 9: JAX, Mainz, Germany
- 7 - 9: Devoxx UK
- 10: Java Day, Istanbul, Turkey
- 12 - 14: Code Remix Summit, Miami
- 12 - 15: JCON Europe, Germany
- 14, 15: jPrime, Sofia, Bulgaria
- 14 - 16: GeeCON, Krakow, Poland
- 21 - 23: Spring I/O, Barcelona, Spain
- 27, 28: JNation, Coimbra, Portugal
- 30: Voxxed Days Ioannina, Greece
June
- 5: JSpring, Utrecht, Netherlands
- 11 - 13: Devoxx Poland
- 19 - 20: Voxxed Days Luxemburg
- 27: SREday Amsterdam
July
- 8 - 10: DevBCN, Barcelona, Spain
- 9 - 11: WeAreDevelopers, Berlin
- 24: Prime Time: The High Performance Java Event
August
September
- 3, 4: JavaZone, Norway
- 16: Java Forum Nord, Hannover, Germany
- 19: AI4DEVS - Amsterdam Edition
- 26 - 27: Voxxed Days Crete
- 29 - Oct 2: dev2next, Colorado Springs, Colorado
October
- 6 - 10: Devoxx Belgium
November
- 6: JFall, Ede, Netherlands
- 7: SREday Amsterdam
- 12 - 14: Devoxx Morocco
December
Cut Code Review Time & Bugs in Half. Instantly.
Supercharge your team to ship faster with the most advanced AI code reviews.
Get Started!Don’t Forget to Share This Post!
Comments (2)
Tobiloba
3 years agoI 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?
Denis Magda
3 years agoHey, 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