localhost/encrypt returns 未找到但已配置一切

localhost/encrypt returns not found but everything is configured

我是 spring 云中的新手,目前我正在创建简单的配置服务器。 现在我正在进行加密步骤,我已经在 jdk1.8 文件夹中安装了 JCE,我也有代码:

application.yml

server:
  port: 8888
  servlet:
    context-path: /

spring:
  cloud:
    config:
      server:
        git:
          uri: https://github.com/genadigeno/config-server.git
          search-paths:
            - 'station*'
          repos:
            perf:
              pattern:
                - "*/perf"
              uri: https://github.com/genadigeno/performance-test.git
              search-paths:
                - 'station*'

bootstrap.properties

encrypt.key=ABCDEFGHIJKLMNOPQRSTUVWYXZ

而且我还为 post 请求禁用了 csrf,并且它有效。 问题是当我发送 post 请求时:localhost:8888/ecnrypt 它 returns 我 404 错误代码。

这是图片:

您的 url 有错别字:ecnrypt 应该是 encrypt