关于配置mcp服务端sse-message-endpoint和sse-endpoint的注意点 在spring ai配置mcp服务时这里的pom配置如下(alibaba的配置不用管)?xml version1.0 encodingUTF-8? project xmlnshttp://maven.apache.org/POM/4.0.0 xmlns:xsihttp://www.w3.org/2001/XMLSchema-instance xsi:schemaLocationhttp://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd modelVersion4.0.0/modelVersion groupIdcom.ai/groupId artifactIdmcp-server/artifactId version1.0-SNAPSHOT/version properties maven.compiler.source21/maven.compiler.source maven.compiler.target21/maven.compiler.target project.build.sourceEncodingUTF-8/project.build.sourceEncoding /properties parent groupIdorg.springframework.boot/groupId artifactIdspring-boot-starter-parent/artifactId version3.5.9/version /parent dependencies dependency groupIdorg.springframework.ai/groupId artifactIdspring-ai-starter-mcp-server-webmvc/artifactId /dependency /dependencies dependencyManagement dependencies dependency groupIdorg.springframework.ai/groupId artifactIdspring-ai-bom/artifactId version1.1.8/version typepom/type scopeimport/scope /dependency dependency groupIdcom.alibaba.cloud.ai/groupId artifactIdspring-ai-alibaba-bom/artifactId version1.1.2.2/version typepom/type scopeimport/scope /dependency dependency groupIdcom.alibaba.cloud.ai/groupId artifactIdspring-ai-alibaba-extensions-bom/artifactId version1.1.2.2/version typepom/type scopeimport/scope /dependency /dependencies /dependencyManagement repositories repository idspring-snapshots/id nameSpring Snapshots/name urlhttps://repo.spring.io/snapshot/url releases enabledfalse/enabled /releases /repository repository nameCentral Portal Snapshots/name idcentral-portal-snapshots/id urlhttps://central.sonatype.com/repository/maven-snapshots//url releases enabledfalse/enabled /releases snapshots enabledtrue/enabled /snapshots /repository /repositories /projectapplication.yml配置如下:spring: application: name: mcp-server ai: mcp: server: name: mcp-server1 version: 1.0.0 type: SYNC # sse消息端点路径 sse-message-endpoint: /api/v1/mcp/message # sse端点路径 sse-endpoint: /api/v1/sse # url访问前缀 # base-url: /api/v1 stdio: false server: port: 8085这里可以看到有一个base_url的配置这个配置目前感觉是没有多大的作用我在客户端访问MCP服务端的时候这个base_url的配置主要作用在sse-message-endpoint链接前缀但是当客户端连接上sse-endpoint端点的时候访问的/api/v1/mcp/message出现404的错误但是当把base_url注释掉直接把sse-message-endpoint端点修改为/api/v1/mcp/message就可以正常访问了客户端的配置如下:spring: ai: mcp: client: mcp-server: url: http://localhost:8085 sse-endpoint: /api/v1/sse