-
Notifications
You must be signed in to change notification settings - Fork 73
Update 25.0.0.12-beta-post into draft #4605
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Add location of MCP endpoint to MCP blog
Japanese blog 25.0.0.9
25.0.0.11 post
Update prod
posts/2025-11-18-25.0.0.12-beta.adoc
Outdated
| When a client connects to the MCP server, a unique session ID is assigned to the client during the link:https://modelcontextprotocol.io/specification/2025-06-18/basic/lifecycle#initialization[initialization phase] and returned in the `Mcp-Session-Id` HTTP response header. For subsequent requests, the client must include the session ID in the `Mcp-Session-Id` request header. | ||
|
|
||
| === MCP Endpoint Discoverability | ||
| The MCP endpoint is made available at `/mcp` under the context root of your application, e.g., `http://localhost:9080/myMcpApp/mcp`. For ease of discovery, the URL of the MCP endpoint for your Liberty hosted application is now output in the server logs on application startup. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For ease of discovery, the URL of the MCP endpoint for your Liberty-hosted application is now output to the server logs at application startup.
or
For ease of discovery, the URL of the MCP endpoint for your Liberty-hosted application is now written to the server logs at application startup.
posts/2025-11-18-25.0.0.12-beta.adoc
Outdated
| === MCP Endpoint Discoverability | ||
| The MCP endpoint is made available at `/mcp` under the context root of your application, e.g., `http://localhost:9080/myMcpApp/mcp`. For ease of discovery, the URL of the MCP endpoint for your Liberty hosted application is now output in the server logs on application startup. | ||
|
|
||
| The following example shows what you would see in your logs if you had an application called `myMcpApp`: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The following example shows what you would see in your logs if you have an application called myMcpApp:
posts/2025-11-18-25.0.0.12-beta.adoc
Outdated
| I MCP server endpoint: http://localhost:9080/myMcpApp/mcp | ||
| ``` | ||
|
|
||
| In this beta version, the MCP server endpoint is also accessible with a trailing slash at the end, for example, `http://localhost:9080/myMcpApp/mcp/`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this beta version, the MCP server endpoint is also accessible with a trailing slash (/) at the end, for example, http://localhost:9080/myMcpApp/mcp/.
posts/2025-11-18-25.0.0.12-beta.adoc
Outdated
| [#netty] | ||
| == Netty‑based HTTP transport on Open Liberty | ||
|
|
||
| Open Liberty now provides a Netty‑based HTTP transport as a beta preview. This change is an internal implementation swap for the underlying transport used for HTTP/1.1, HTTP/2, WebSocket, JMS and SIP communications. It is designed for zero migration: your applications and `server.xml` continue to behave the same. We are looking forward and counting on your feedback before GA! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Open Liberty now provides a Netty-based HTTP transport as a beta preview. This change replaces the underlying transport implementation for HTTP/1.1, HTTP/2, WebSocket, JMS, and SIP communications. It is designed for zero migration impact—your applications and the server.xml file continue to behave as before.
posts/2025-11-18-25.0.0.12-beta.adoc
Outdated
| * As of the moment, clear text upgrade requests for HTTP 2.0 with request data is rejected with a 'Request Entity Too Large' status code. A fix is in progress. | ||
|
|
||
| ==== WebSocket | ||
| Websocket inbound requests can generate FFDC RuntimeExceptions on connection cleanup when a connection is closed from the client side. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Websocket inbound requests can generate FFDC RuntimeExceptions on connection cleanup when a connection is closed from the client side. | |
| Websocket inbound requests can generate FFDC `RuntimeExceptions` on connection cleanup when a connection is closed from the client side. |
posts/2025-11-18-25.0.0.12-beta.adoc
Outdated
| // // // // // // // // | ||
| [#springboot] | ||
| == SpringBoot 4.0 | ||
| Open Liberty currently supports running Spring Boot 1.5, 2.x, and 3.x applications. With the introduction of the new springBoot-4.0 feature, users can now deploy Spring Boot 4.x applications by enabling this feature. While Liberty consistently supports Spring Boot applications packaged as WAR files, this enhancement extends support to both JAR and WAR formats for Spring Boot 4.x applications. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Open Liberty currently supports running Spring Boot 1.5, 2.x, and 3.x applications. With the introduction of the new springBoot-4.0 feature, users can now deploy Spring Boot 4.x applications by enabling this feature. While Liberty consistently supports Spring Boot applications packaged as WAR files, this enhancement extends support to both JAR and WAR formats for Spring Boot 4.x applications. | |
| Open Liberty currently supports running Spring Boot 1.5, 2.x, and 3.x applications. With the introduction of the new `springBoot-4.0` feature, users can now deploy Spring Boot 4.x applications by enabling this feature. While Liberty consistently supports Spring Boot applications packaged as WAR files, this enhancement extends support to both `JAR` and `WAR` formats for Spring Boot 4.x applications. |
posts/2025-11-18-25.0.0.12-beta.adoc
Outdated
|
|
||
| The springBoot-4.0 feature provides a complete support for running a Sprint Boot 4.x application on Open Liberty as well as having the capability to thin the application when creating applications in containers. | ||
|
|
||
| To use this feature, the user must be running Java 17 or later with EE11 features enabled. If the application uses servlets, it must be configured to use Servlet 6.1. Include the following features in your `server.xml` file to define settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| To use this feature, the user must be running Java 17 or later with EE11 features enabled. If the application uses servlets, it must be configured to use Servlet 6.1. Include the following features in your `server.xml` file to define settings. | |
| To use this feature, the user must be running `Java 17` or later with EE11 features enabled. If the application uses servlets, it must be configured to use `Servlet 6.1`. Include the following features in your `server.xml` file to define settings. |
posts/2025-11-18-25.0.0.12-beta.adoc
Outdated
| <springBootApplication id="spring-boot-app" location="spring-boot-app-0.1.0.jar" name="spring-boot-app" /> | ||
| ---- | ||
|
|
||
| As in earlier versions, the Spring Boot application JAR can be deployed by placing it in the `/dropins/spring` folder. The `springBootApplication` configuration in `server.xml` can be omitted when using this deployment method. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| As in earlier versions, the Spring Boot application JAR can be deployed by placing it in the `/dropins/spring` folder. The `springBootApplication` configuration in `server.xml` can be omitted when using this deployment method. | |
| As in earlier versions, the Spring Boot application `JAR` can be deployed by placing it in the `/dropins/spring` folder. The `springBootApplication` configuration in the `server.xml` file can be omitted when using this deployment method. |
posts/2025-11-18-25.0.0.12-beta.adoc
Outdated
|
|
||
| Previously, repository methods couldn't limit retrieval of results to subsets of entity attributes (commonly referred to as projections). Now, repository methods can return Java records that represent a subset of an entity. In addition, parameter-based `@Find` and `@Delete` methods earlier were not able to filter on conditions other than equality. Now more advanced filtering can be done in two different ways: typing the repository method parameter with a `Constraint` subtype or indicating the `Constraint` subtype by using the `@Is` annotation. | ||
|
|
||
| In Jakarta Data, you write simple Java objects called *Entities* to represent data, and you write interfaces called *Repositories* to define operations on data. You inject a Repository into your application and use it. The implementation of the Repository is automatically provided for you! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| In Jakarta Data, you write simple Java objects called *Entities* to represent data, and you write interfaces called *Repositories* to define operations on data. You inject a Repository into your application and use it. The implementation of the Repository is automatically provided for you! | |
| In Jakarta Data, you write simple Java objects called *Entities* to represent data, and you write interfaces called *Repositories* to define operations on data. You inject a Repository into your application and use it. The implementation of the *Repository* is automatically provided for you! |
Link to draft site https://blogs-draft-openlibertyio.mqj6zf7jocq.us-south.codeengine.appdomain.cloud/blog/