5 Minute Azure Survey: Java EE, Jakarta EE, and MicroProfile
- October 01, 2020
- 2751 Unique Views
- 2 min read
The Azure team at Microsoft has been strengthening its commitment and outreach to the Jakarta EE, Java EE, and MicroProfile communities.
Tools, Workshops, and More
This effort includes guidance, tools, scripts, workshops, and talks to help migrate workloads to virtual machines, Kubernetes, OpenShift, and managed service (PaaS) offerings.
We are working with key industry partners such as Oracle, IBM, Payara, and the Eclipse Foundation to better support runtimes such as WebLogic, WebSphere Traditional, Open/WebSphere Liberty, JBoss EAP, WildFly, Payara, and GlassFish on Azure.
Real World Experience-Based Feedback
As we all know, there is no substitute to working closely, one-on-one with actual user-stakeholders. Solutions developed in a vacuum are rarely on-point. The ideal goal is to have a selected set of customers give us real world, experience-based feedback on the solutions we provide as we develop and release them iteratively.
Customers will work closely with the Microsoft Program Manager responsible for developing the solution as well as the engineering team. If desired, Microsoft is happy to help some customers with a free migration proof-of-concept.
Quick Survey
If this sounds interesting, please fill out the survey below, by clicking on the image below, or click here to go straight to the survey.

https://aka.ms/migration-survey
If you want us to contact you, please include your contact information at the end.
Even if you are not necessarily interested in migrating to Azure right away, it is still very helpful to fill out the survey and share your ideas on what you would like to see.
The survey attempts to understand the common use cases we need to cover in order to best serve your needs.
Conclusion
We at Microsoft are working hard on your behalf and we are always glad to hear from you.
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