Skip to content

Commit

Permalink
Merge pull request #4011 from OpenLiberty/staging
Browse files Browse the repository at this point in the history
send 3rd party posts to prod
  • Loading branch information
dmuelle authored Aug 27, 2024
2 parents ea33cae + 01cfce7 commit c591ea9
Show file tree
Hide file tree
Showing 11 changed files with 260 additions and 8 deletions.
22 changes: 14 additions & 8 deletions blog_tags.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
"featured": "true"
},{
"name": "microprofile",
"posts": ["24.0.0.9-beta", "liberty-on-amazon-ecs",
"posts": ["rethinking-microservices", "24.0.0.9-beta",
"liberty-on-amazon-ecs", "24.0.0.8-beta",
"24.0.0.8", "liberty-developer-essentials-badge",
"24.0.0.8-beta", "24.0.0.7",
"24.0.0.7-beta", "24.0.0.6-beta",
Expand Down Expand Up @@ -364,7 +365,8 @@
},
{
"name": "jakarta-ee",
"posts": ["24.0.0.8", "liberty-developer-essentials-badge",
"posts": ["rethinking-microservices",
"24.0.0.8", "liberty-developer-essentials-badge",
"24.0.0.8-beta", "24.0.0.7-beta",
"24.0.0.6-beta", "simplifying-nosql-database-integration-with-jakarta-nosql",
"jakarta-nosql-in-action-meet-jnopo-game",
Expand Down Expand Up @@ -430,7 +432,8 @@
},
{
"name": "community",
"posts": ["liberty-developer-essentials-badge",
"posts": ["suva-modernizing-architecture-with-liberty", "why-cloud-native-java-devs-love-liberty",
"what-lies-ahead-in-ai-era", "liberty-developer-essentials-badge",
"24.0.0.7", "simplifying-nosql-database-integration-with-jakarta-nosql",
"jakarta-nosql-in-action-meet-jnopo-game",
"jakarta-nosql-challenge-switching-nosql-easily","DevNexus24",
Expand Down Expand Up @@ -467,7 +470,9 @@
},
{
"name": "developer-experience",
"posts": ["liberty-on-amazon-ecs","24.0.0.8",
"posts": ["liberty-tools-eclipse-ide", "liberty-tools-intellij-idea",
"liberty-tools-visual-studio-code", "why-cloud-native-java-devs-love-liberty",
"what-lies-ahead-in-ai-era", "liberty-on-amazon-ecs","24.0.0.8",
"liberty-developer-essentials-badge", "24.0.0.8-beta",
"24.0.0.7", "liberty-user-feature-tutorial",
"liberty-project-starter-guide-IntelliJ", "simplifying-nosql-database-integration-with-jakarta-nosql",
Expand Down Expand Up @@ -531,8 +536,7 @@
},
{
"name": "monitoring",
"posts": ["24.0.0.9-beta",
"24.0.0.8", "24.0.0.8-beta",
"posts": ["24.0.0.8", "24.0.0.8-beta",
"24.0.0.7-beta", "24.0.0.3",
"Primeur", "23.0.0.3",
"tracing-with-microprofile-telemetry", "separate-stack-trace-22008",
Expand All @@ -552,7 +556,8 @@
},
{
"name": "performance-enhancements",
"posts": ["liberty-on-amazon-ecs","virtual-threads-case-study",
"posts": ["five-java-dev-musthaves-fast-startup", "rapid-startup-without-compromise",
"liberty-on-amazon-ecs","virtual-threads-case-study",
"24.0.0.6", "24.0.0.3",
"Java21-Images", "24.0.0.1",
"23.0.0.10-beta", "23.0.0.6",
Expand Down Expand Up @@ -587,7 +592,8 @@
},
{
"name": "case-study",
"posts": [ "Primeur", "production-experience-open-liberty"]
"posts": ["suva-modernizing-architecture-with-liberty",
"Primeur", "production-experience-open-liberty"]
},
{
"name": "reactive",
Expand Down
45 changes: 45 additions & 0 deletions posts/2024-08-25-five-java-dev-musthaves-fast-startup.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
layout: post
title: "Five Java Developer Must-Haves for Ultra-Fast Startup Solutions"
# Do NOT change the categories section
categories: blog
author_picture: https://avatars3.githubusercontent.com/vijaysun-omr
author_github: https://github.com/vijaysun-omr
seo-title: Five Java Developer Must-Haves for Ultra-Fast Startup Solutions - OpenLiberty.io
seo-description: Faster Java startup should not compromise developer experience, throughput performance, or security. We discuss how we achieved this with Liberty InstantOn.
blog_description: "Faster Java startup should not compromise developer experience, throughput performance, or security. We discuss how we achieved this with Liberty InstantOn."
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
additional_authors:
- name: Thomas Watson
github: https://github.com/tjwatson
image: https://avatars0.githubusercontent.com/tjwatson
- name: Laura Cowen
github: https://github.com/lauracowen
image: https://avatars0.githubusercontent.com/lauracowen
---
= Five Java Developer Must-Haves for Ultra-Fast Startup Solutions
Vijay Sundaresan <https://github.com/vijaysun-omr>
:imagesdir: /
:url-prefix:
:url-about: /
//Blank line here is necessary before starting the body of the post.


As more and more of our applications are developed for the cloud, and we move towards microservices and even serverless application architecture, start-up times are becoming ever more important. Unfortunately, although Java is a fantastic, robust language for developing enterprise applications, it isn't really known for its quick start-up times.

However, several solutions have recently emerged to help speed up Java startup. They range from compiling a link:https://www.graalvm.org/latest/reference-manual/native-image/[native image] that removes the JVM from the compiled app (the startup speed bottleneck in Java apps) to link:https://docs.azul.com/core/crac/crac-introduction[taking a snapshot of the application] after startup so that there are no startup tasks to complete when it's restored. But, most of these solutions suffer from compromises to developer experience, throughput performance, or security.

What we really need is a solution that vastly improves the start-up time of Java applications, whilst also ensuring:

* It's easy to implement in apps.
* It's easy to use existing skills and APIs to write apps.
* It's easy to enable on-the-fly configuration at deployment (restore) time.
* The app's peak throughput performance is not degraded.
* The security of the app is not compromised.

In an article on link:https://dzone.com/articles/five-java-developer-must-haves-for-ultra-fast-star[DZone], IBM's InstantOn lead and Hybrid Cloud Performance Architect explore each of these considerations and how they've been able to achieve fast start-up without compromising on any of them with Liberty InstantOn!

== Find out more:

Find out more about Liberty InstantOn and how it enables all of this without compromise in link:https://dzone.com/articles/five-java-developer-must-haves-for-ultra-fast-star[Five Java Developer Must-Haves for Ultra-Fast Startup Solutions].
20 changes: 20 additions & 0 deletions posts/2024-09-03-what-lies-ahead-in-ai-era.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
layout: post
title: "Java Developers, What Lies Ahead in the AI era?"
# Do NOT change the categories section
categories: blog
author_picture: https://avatars3.githubusercontent.com/Emily-Jiang
author_github: https://github.com/Emily-Jiang
seo-title: Java Developers, What Lies Ahead in the AI era? - OpenLiberty.io
seo-description: With the rise of large language models, AI tools/libraries, and AI integrations, what does the future of Java development look like and how does AI fit into this? In this blog, learn about the recent advancements in AI, how they may impact the world of software development and how we could make best use of them as Java developers.
blog_description: "With the rise of large language models, AI tools/libraries, and AI integrations, what does the future of Java development look like and how does AI fit into this? In this blog, learn about the recent advancements in AI, how they may impact the world of software development and how we could make best use of them as Java developers."
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
redirect_link: https://medium.com/@emijiang6/java-developers-what-lies-ahead-in-the-ai-era-e36aa3c32b64
permalink: /blog/redirected.html
---
= Java Developers, What Lies Ahead in the AI era?
Emily Jiang <https://github.com/Emily-Jiang >
//Blank line here is necessary before starting the body of the post.

With the rise of large language models (LLMs), AI tools/libraries, and AI integrations, what does the future of Java development look like and how does AI fit into this? In this post, learn about the recent advancements in AI, how they may impact the world of software development and how we could make best use of them as Java developers.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
layout: post
title: "Six reasons why WebSphere Liberty and Open Liberty is an ideal choice for cloud-native Java applications"
# Do NOT change the categories section
categories: blog
author_picture: https://avatars3.githubusercontent.com/gcharters
author_github: https://github.com/gcharters
seo-title: Six reasons why WebSphere Liberty and Open Liberty is an ideal choice for cloud-native Java applications - OpenLiberty.io
seo-description: The move to cloud and cloud-native delivery leads to new challenges for development and operations teams. This article highlights six capabilities of Liberty that address these new challenges, showcasing how Liberty is an ideal choice for both migrated enterprise Java workloads and new cloud-native workloads.
blog_description: "The move to cloud and cloud-native delivery leads to new challenges for development and operations teams. This article highlights six capabilities of Liberty that address these new challenges, showcasing how Liberty is an ideal choice for both migrated enterprise Java workloads and new cloud-native workloads."
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
redirect_link: https://developer.ibm.com/articles/6-reasons-why-open-liberty-is-an-ideal-choice-for-developing-and-deploying-microservices/
permalink: /blog/redirected.html
additional_authors:
- name: Shane O'Rourke
github: https://github.com/shane-orourke
image: https://avatars0.githubusercontent.com/shane-orourke
- name: Grace Jansen
github: https://github.com/GraceJansen
image: https://avatars0.githubusercontent.com/GraceJansen
---
= Six reasons why WebSphere Liberty and Open Liberty is an ideal choice for cloud-native Java applications
Graham Charters <https://github.com/gcharters>
//Blank line here is necessary before starting the body of the post.

The move to cloud and cloud-native delivery leads to new challenges for development and operations teams. This article highlights six capabilities of Liberty that address these new challenges, showcasing how Liberty is an ideal choice for both migrated enterprise Java workloads and new cloud-native workloads.
20 changes: 20 additions & 0 deletions posts/2024-10-08-why-cloud-native-java-devs-love-liberty.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
layout: post
title: "Why cloud-native Java developers love Liberty"
# Do NOT change the categories section
categories: blog
author_picture: https://avatars3.githubusercontent.com/GraceJansen
author_github: https://github.com/GraceJansen
seo-title: Why cloud-native Java developers love Liberty - OpenLiberty.io
seo-description: Explore the features, tools, and supporting technologies that enable developers using Open Liberty to create their Java applications and microservices effectively for a cloud-native environment.
blog_description: "Explore the features, tools, and supporting technologies that enable developers using Open Liberty to create their Java applications and microservices effectively for a cloud-native environment."
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
redirect_link: https://developer.ibm.com/articles/why-cloud-native-java-developers-love-liberty/
permalink: /blog/redirected.html
---
= Why cloud-native Java developers love Liberty
Grace Jansen <https://github.com/GraceJansen>
//Blank line here is necessary before starting the body of the post.

Developing cloud-native Java applications can be a daunting task. However, open source cloud-native runtimes like Open Liberty can simplify the process, making it easier for developers to create effective applications designed for the cloud. This article delves into the features and tools offered by Open Liberty, covering the entire development lifecycle from setup to deployment and monitoring.
22 changes: 22 additions & 0 deletions posts/2024-10-24-liberty-tools-visual-studio-code.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
layout: post
title: "Effective cloud native development with Open Liberty in Visual Studio Code"
# Do NOT change the categories section
categories: blog
author_picture: https://avatars3.githubusercontent.com/GraceJansen
author_github: https://github.com/GraceJansen
seo-title: Effective cloud native development with Open Liberty in Visual Studio Code - OpenLiberty.io
seo-description: Liberty Tools for Visual Studio Code enables fast, easy and efficient development of cloud native Java applications with Open Liberty.
blog_description: "Liberty Tools for Visual Studio Code enables fast, easy and efficient development of cloud native Java applications with Open Liberty."
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
redirect_link: https://developer.ibm.com/articles/awb-effective-cloud-native-development-open-liberty-vs-code/
permalink: /blog/redirected.html
---
= Effective cloud native development with Open Liberty in Visual Studio Code
Grace Jansen <https://github.com/GraceJansen>
//Blank line here is necessary before starting the body of the post.

As cloud-native developers, you have to care not only about developing your application, but also the building, deployment, and management of it in production. These added tasks create a complex and often challenging environment, which causes you to be constantly switching between different platforms, tools, and frameworks.

What you need is a way in which you could complete this diverse set of tasks, with language and framework support, all within one IDE. The open source Liberty Tools for Visual Studio Code offers just this option, helping you develop, build, test, deploy, and manage your applications – all within your favorite IDE, Visual Studio Code!
22 changes: 22 additions & 0 deletions posts/2024-10-25-liberty-tools-intellij-idea.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
layout: post
title: "Effective cloud-native Java app development with Open Liberty in IntelliJ IDEA"
# Do NOT change the categories section
categories: blog
author_picture: https://avatars3.githubusercontent.com/GraceJansen
author_github: https://github.com/GraceJansen
seo-title: Effective cloud-native Java app development with Open Liberty in IntelliJ IDEA - OpenLiberty.io
seo-description: Use Liberty Tools for IntelliJ IDEA to enable rapid, easy, and efficient development of cloud-native Java applications with Open Liberty.
blog_description: "Use Liberty Tools for IntelliJ IDEA to enable rapid, easy, and efficient development of cloud-native Java applications with Open Liberty."
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
redirect_link: https://developer.ibm.com/articles/awb-effective-cloud-native-development-open-liberty-intellij-idea/
permalink: /blog/redirected.html
---
= Effective cloud-native Java app development with Open Liberty in IntelliJ IDEA
Grace Jansen <https://github.com/GraceJansen>
//Blank line here is necessary before starting the body of the post.

When it comes to integrated development environments, within the Java community, IntelliJ IDEA is the most popular IDE amongst professional developers. It is the preferred IDE of choice by 2/5ths of developers, making up the biggest majority of IDE users in this community, according to JRebel's 2023 Java Developer Productivity Report. This well-established and highly popular IDE provides a fantastic and highly efficient environment in which to develop effective cloud-native Java applications, significantly improving the development experience. However, in order to truly unlock this improved development experience and enhanced productivity, we must ensure that we have the most appropriate and useful plugins.

In this article, we'll explore the Liberty Tools plugin for IntelliJ IDEA and how this plugin can help enable fast, easy, and efficient development of cloud-native Java applications with Open Liberty.
20 changes: 20 additions & 0 deletions posts/2024-11-01-liberty-tools-eclipse-ide.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
layout: post
title: "Effective cloud-native Java app development with Open Liberty in the Eclipse IDE"
# Do NOT change the categories section
categories: blog
author_picture: https://avatars3.githubusercontent.com/GraceJansen
author_github: https://github.com/GraceJansen
seo-title: Effective cloud-native Java app development with Open Liberty in the Eclipse IDE - OpenLiberty.io
seo-description: Use Liberty Tools for Eclipse to enable fast, easy, and efficient development of cloud native Java applications with Open Liberty in the Eclipse IDE.
blog_description: "Use Liberty Tools for Eclipse to enable fast, easy, and efficient development of cloud native Java applications with Open Liberty in the Eclipse IDE."
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
redirect_link: https://developer.ibm.com/articles/awb-effective-cloud-native-development-open-liberty-eclipse-ide/
permalink: /blog/redirected.html
---
= Effective cloud-native Java app development with Open Liberty in the Eclipse IDE
Grace Jansen <https://github.com/GraceJansen>
//Blank line here is necessary before starting the body of the post.

The Eclipse IDE has been a popular choice with developers for many years, placing 2nd in "most popular IDE of 2022" in the JRebel survey. This mature and fully-featured IDE, with an extensive plugin repository, can help to significantly improve the development experience. However, ensuring that developers have the most appropriate and helpful plugins can be the key to unlocking this improved development experience and enhanced productivity. In this article, we explore the Liberty Tools plugin for Eclipse IDE and how it can help enable fast, easy, and efficient development of cloud-native Java applications with Open Liberty.
22 changes: 22 additions & 0 deletions posts/2024-11-12-rethinking-microservices.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
layout: post
title: "Rethinking microservices"
# Do NOT change the categories section
categories: blog
author_picture: https://avatars3.githubusercontent.com/Emily-Jiang
author_github: https://github.com/Emily-Jiang
seo-title: Rethinking microservices - OpenLiberty.io
seo-description: Will microservice survive in the Serverless era as we race towards cloud native development? In this article Emily explores this question, inviting you to take a step back and rethink microservices.
blog_description: "Will microservice survive in the Serverless era as we race towards cloud native development? In this article Emily explores this question, inviting you to take a step back and rethink microservices."
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
redirect_link: https://medium.com/@emijiang6/rethinking-microservices-dcf9696af385
permalink: /blog/redirected.html
---
= Rethinking microservices
Emily Jiang <https://github.com/Emily-Jiang >
//Blank line here is necessary before starting the body of the post.

There are many misconceptions for microservices, which have been around for over a decade. Some people wonder whether microservices are going to die, especially in an IT industry that is quickly moving toward the cloud. With serverless becoming a hot topic, will microservices survive in the serverless era?

In this blog, take a step back and rethink microservices. We start with the history of microservices, then misconception about microservices, best practices of microservices and finally the future of microservices.
Loading

0 comments on commit c591ea9

Please sign in to comment.