Skip to content

Commit

Permalink
Merge pull request #4149 from OpenLiberty/Japanese-blog-24.0.0.11
Browse files Browse the repository at this point in the history
Contribution from Takakiyo-san and update to the original version wit…
  • Loading branch information
dmuelle authored Nov 19, 2024
2 parents 9888a72 + 0e478ea commit 97686c2
Show file tree
Hide file tree
Showing 2 changed files with 140 additions and 0 deletions.
3 changes: 3 additions & 0 deletions posts/2024-11-05-24.0.0.11.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ seo-description: The 24.0.0.11 release expands the collection of InstantOn-suppo
blog_description: The 24.0.0.11 release expands the collection of InstantOn-supported Liberty features to include messaging and authorization capabilities. A new Open Liberty guide and a CVE fix are also included.
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
blog-available-in-languages:
- lang: ja
path: /ja/blog/2024/11/05/24.0.0.11.html
---
= Rapid startup for applications that use authorization and messaging features in 24.0.0.11
David Mueller <https://github.com/dmuelle>
Expand Down
137 changes: 137 additions & 0 deletions posts/ja/2024-11-05-24.0.0.11.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
---
layout: post
title: 24.0.0.11での認証およびメッセージング機能を使用するアプリケーションの高速起動
# Do NOT change the categories section
categories: blog
author_picture: https://avatars3.githubusercontent.com/dmuelle
author_github: https://github.com/dmuelle
seo-title: 24.0.0.11での認証およびメッセージング機能を使用するアプリケーションの高速起動 - OpenLiberty.io
seo-description: この 24.0.0.11 リリースでは、InstantOn がサポートする Liberty 機能のコレクションが拡張され、メッセージング機能と認証機能が追加されました。新しい Open Liberty ガイドと CVE 修正も含まれています。
blog_description: この 24.0.0.11 リリースでは、InstantOn がサポートする Liberty 機能のコレクションが拡張され、メッセージング機能と認証機能が追加されました。新しい Open Liberty ガイドと CVE 修正も含まれています。
open-graph-image: https://openliberty.io/img/twitter_card.jpg
open-graph-image-alt: Open Liberty Logo
additional_authors:
- name: 田中 孝清 (翻訳)
github: https://github.com/takakiyo
image: https://avatars.githubusercontent.com/takakiyo
blog-available-in-languages:
- lang: en
path: /blog/2024/11/05/24.0.0.11.html
---
= 24.0.0.11での認証およびメッセージング機能を使用するアプリケーションの高速起動
David Mueller <https://github.com/dmuelle>
:imagesdir: /
:url-prefix:
:url-about: /
//Blank line here is necessary before starting the body of the post.

この 24.0.0.11 リリースでは、InstantOn がサポートする Liberty 機能のコレクションが拡張され、メッセージング機能と認証機能が追加されました。新しい Open Liberty ガイドと CVE 修正も含まれています。

link:{url-about}[Open Liberty] 24.0.0.11 では、以下のアップデートがおこなわれました。

* <<instant, Liberty InstantOn で認証機能とメッセージング機能が使用できるようになりました>>
* <<guide, 新しいガイド: "Producing and consuming messages in Java microservices">>
* <<CVEs, Security Vulnerability (CVE) の修正>>


link:https://github.com/OpenLiberty/open-liberty/issues?q=label%3Arelease%3A240011+label%3A%22release+bug%22[24.0.0.11] で修正されたバグの一覧をご覧ください。

link:{url-prefix}/blog/?search=release&search!=beta[以前の Open Liberty GA リリースブログ投稿] をチェックしてください。


[#run]

== 24.0.0.11 を使用してアプリを開発および実行する

link:{url-prefix}/guides/maven-intro.html[Maven] を使用している場合は、`pom.xml` ファイルに以下を含めます。

[source,xml]
----
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.11.1</version>
</plugin>
----

または、link:{url-prefix}/guides/gradle-intro.html[Gradle] の場合は、`build.gradle` ファイルに次の内容を含めます。

[source,gradle]
----
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'io.openliberty.tools:liberty-gradle-plugin:3.9.1'
}
}
apply plugin: 'liberty'
----

または、link:{url-prefix}/docs/latest/container-images.html[コンテナ イメージ] を使用している場合:

[source]
----
FROM icr.io/appcafe/open-liberty
----

または、link:{url-prefix}/start/[ダウンロード・ページ]をご覧ください。

link:https://plugins.jetbrains.com/plugin/14856-liberty-tools[IntelliJ IDEA]、link:https://marketplace.visualstudio.com/items?itemName=Open-Liberty.liberty-dev-vscode-ext[Visual Studio Code]、または link:https://marketplace.eclipse.org/content/liberty-tools[Eclipse IDE]を使用している場合は、オープンソースの link:https://openliberty.io/docs/latest/develop-liberty-tools.html[Liberty 開発者ツール] を活用して、IDE 内から効果的な開発、テスト、デバッグ、アプリケーション管理を行うこともできます。

[link=https://stackoverflow.com/tags/open-liberty]
image::img/blog/blog_btn_stack_ja.svg[Stack Overflowで質問する, align="center"]

// // // // DO NOT MODIFY THIS COMMENT BLOCK <GHA-BLOG-TOPIC> // // // //
// Blog issue: https://github.com/OpenLiberty/open-liberty/issues/29887
// Contact/Reviewer: gkwan-ibm
// // // // // // // //

[#instant]
== Liberty InstantOnで認証機能とメッセージング機能が使用できるようになりました

InstantOn は link:{url-prefix}/docs/latest/instanton.html#supported-features[Open Liberty 機能のサブセット]をサポートしています。24.0.0.11 リリースで、この利用可能なサブセットに以下のFeatureが追加されました。

* link:{url-prefix}/docs/latest/reference/feature/jacc-1.5.html[Java Authorization Contract for Containers (jacc-1.5)].
* link:{url-prefix}/docs/latest/reference/feature/appAuthorization-2.0.html[Jakarta Authorization 2.0 (appAuthorization-2.0)]
* link:{url-prefix}/docs/latest/reference/feature/appAuthorization-2.1.html[Jakarta Authorization 2.1 (appAuthorization-2.1)]
* link:{url-prefix}/docs/latest/reference/feature/wasJmsServer-1.0.html[Message Server 1.0 (wasJmsServer-1.0)]
* link:{url-prefix}/docs/latest/reference/feature/messagingServer-3.0.html[Messaging Server 3.0 (messagingServer-3.0)]
* link:{url-prefix}/docs/latest/reference/feature/wasJmsClient-2.0.html[JMS Client for Message Server 2.0 (wasJmsClient-2.0)]
* link:{url-prefix}/docs/latest/reference/feature/messagingClient-3.0.html[Messaging Server Client 3.0 (messagingClient-3.0)]

この機能強化により、Open Liberty InstantOn を使用して、これらの機能を使用するアプリケーションを迅速にデプロイできるようになります。詳細については、link:{url-prefix}/docs/latest/instanton.html[「Open Liberty InstantOn によるコンテナー化されたアプリケーションの起動の高速化」]を参照してください。


[#guide]
== 新しいガイド: "Producing and consuming messages in Java microservices"


新しいガイド link:https://openliberty.io/guides/jms-intro.html[Producing and consuming messages in Java microservices] が link:https://openliberty.io/guides/#rest_alternatives[REST alternatives] カテゴリーで公開されました。 Java マイクロサービス間で標準的なJakarta メッセージング APIを使用して、組み込みの Liberty メッセージングサーバーまたは外部メッセージングサーバーである IBM MQに接続し、メッセージを送信(Produce)し受信(Consume)する方法を学習します。



[#CVEs]
== Security Vulnerability (CVE) の修正
[cols="5*"]

以下の CVE が 24.0.0.11 で修正されました。

|===
|CVE |CVSS Score |Vulnerability Assessment |Versions Affected |Notes

|https://www.cve.org/CVERecord?id=CVE-2024-7254[CVE-2024-7254]
|7.5
|Denial of service
|20.0.0.12 - 24.0.0.10
| link:{url-prefix}/docs/latest/reference/feature/grpc-1.0.html[grpc-1.0] と link:{url-prefix}/docs/latest/reference/feature/grpcClient-1.0.html[grpcClient-1.0] に影響あり
|===

過去のセキュリティ脆弱性修正の一覧については、link:{url-prefix}/docs/latest/security-vulnerabilities.html[セキュリティ脆弱性 (CVE) リスト] を参照してください。


== Open Liberty 24.0.0.11 を今すぐ入手

<<run,Maven、Gradle、Docker、およびダウンロード可能なアーカイブとして>> こちらのリンクから入手できます。

0 comments on commit 97686c2

Please sign in to comment.