Payara Platform 2021 Survey
- February 23, 2021
- 2009 Unique Views
- < 1 min read
The Payara Platform 2021 Survey is underway and we're inviting everyone to answer a few questions about your use of the Payara Platform and ecosystem components.
We want to know what you like, what you want to see improved, and we're giving you the opportunity to vote on new features you'd like to see added to the Payara Platform.
Your survey answers help drive future development efforts for the Payara Platform.
You can answer anonymously or provide your contact details to be entered into the random drawing from all entrants who provide contact details to receive a $25 Amazon voucher. We'll choose two winners randomly after March 22, 2021.

Thank you for contributing and helping us gain insight into which features and enhancements you would most like to see in future releases of the Payara Platform.
Click here to answer the survey questions.
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