Do you want your ad here?

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

[email protected]

5 Minute Azure Survey: Java EE, Jakarta EE, and MicroProfile

  • October 01, 2020
  • 2751 Unique Views
  • 2 min read
Table of Contents

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.

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?

-15

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

28

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