当前位置: 首页 > 知识库问答 >
问题:

CAS 6.1.5-Service Registry无法加载定义(使用MongoDB作为存储)

叶恩
2023-03-14

环境:MongoDB-4.2 Springboot starter-2.2.5版本

spring-boot-starter-web CAS版本:6.1.5

共有1个答案

东方俊力
2023-03-14

有人在MongoDB中存储了可以共享的示例服务吗?

{
"_class": "org.apereo.cas.support.oauth.services.OAuthRegisteredService",
"clientSecret": "clientSecret",
"clientId": "clientId",
"bypassApprovalPrompt": false,
"generateRefreshToken": true,
"jsonFormat": true,
"supportedGrantTypes": [],
"supportedResponseTypes": [],
"serviceId": "test",
"name": "test",
"expirationPolicy": {
    "_class": "org.apereo.cas.services.DefaultRegisteredServiceExpirationPolicy",
    "deleteWhenExpired": false,
    "notifyWhenDeleted": false
},
"proxyPolicy": {
    "_class": "org.apereo.cas.services.RefuseRegisteredServiceProxyPolicy"
},
"evaluationOrder": 2,
"usernameAttributeProvider": {
    "_class": "org.apereo.cas.services.DefaultRegisteredServiceUsernameProvider",
    "canonicalizationMode": "NONE",
    "encryptUsername": false
},
"logoutType": "BACK_CHANNEL",
"requiredHandlers": [],
"attributeReleasePolicy": {
    "_class": "org.apereo.cas.services.ReturnAllowedAttributeReleasePolicy",
    "allowedAttributes": [],
    "principalAttributesRepository": {
        "_class": "org.apereo.cas.authentication.principal.DefaultPrincipalAttributesRepository",
        "expiration": {
            "$numberLong": "2"
        },
        "timeUnit": "HOURS"
    },
    "consentPolicy": {
        "_class": "org.apereo.cas.services.consent.DefaultRegisteredServiceConsentPolicy",
        "enabled": true
    },
    "authorizedToReleaseCredentialPassword": false,
    "authorizedToReleaseProxyGrantingTicket": false,
    "excludeDefaultAttributes": false,
    "authorizedToReleaseAuthenticationAttributes": true
},
"multifactorPolicy": {
    "_class": "org.apereo.cas.services.DefaultRegisteredServiceMultifactorPolicy",
    "multifactorAuthenticationProviders": [],
    "failureMode": "NOT_SET",
    "bypassEnabled": false
},
"accessStrategy": {
    "_class": "org.apereo.cas.services.DefaultRegisteredServiceAccessStrategy",
    "order": 0,
    "enabled": true,
    "ssoEnabled": true,
    "delegatedAuthenticationPolicy": {
        "_class": "org.apereo.cas.services.DefaultRegisteredServiceDelegatedAuthenticationPolicy",
        "allowedProviders": []
    },
    "requireAllAttributes": true,
    "requiredAttributes": {},
    "rejectedAttributes": {},
    "caseInsensitive": false
},
"properties": {
    "testProperties": {
        "_id": {
            "$numberLong": "0"
        },
        "values": ["testPropertiesValue"]
    }
},
"contacts": []
}
 类似资料:
  • 我目前正在尝试用react native为android设备编写应用程序。我已经创建了一个自定义加载组件,并正在使用显示加载图标。 但是,我想使用包含我的应用程序颜色的自定义gif加载图标。我看了看,但似乎找不到任何东西,可以这样做吗?

  • 我正在尝试将自定义行为添加到基本的 Spring 数据 JPA 存储库中,并且已经根据此处列出的文档完成了 http://docs.spring.io/spring-data/jpa/docs/1.2.0.RELEASE/reference/html/#repositories.single-repository-behaviour 然而,框架似乎没有将该方法识别为客户方法,而是试图解析该方法的名

  • 我正在尝试创建一个自定义插件,我可以在gradle.build文件中应用它。有几种方法可以做到这一点,但我使用buildSrc文件夹来做到这一点。这意味着插件将绑定到我的构建,不可移植。从文档中,buildSrc文件夹应该具有以下属性: buildSrc项目您可以将任务类的源代码放在rootProjectDir/buildSrc/src/main/groovy目录中。Gradle将负责编译和测试任

  • 我想用cdn的axios 但是我得到了一个错误:拒绝加载脚本的https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js'因为它违反了以下内容安全策略指令:“script src'self'”。请注意,未显式设置“script src elem”,因此将“script src”用作回退。

  • 问题内容: 我正在尝试使用flag覆盖系统的类加载器。但是,在加载类时仍未使用。 的代码: 这是主要代码: 这是使用命令的输出(请参阅Eclipse run config): [打开的C:\ Program Files \ Java \ jre7 \ lib \ rt.jar] [从C:\ Program Files \ Java \ jre7 \ lib \ rt.jar加载java.lang.

  • 我正在尝试使用Workbox向我的网站添加PWA功能。我正在遵循入门指南,但我没走多远。当我在Chrome中运行网站时,我得到以下错误: 根据文档,我将workbox-sw.js导入我的Service Worker文件中,该文件位于我的www root文件夹中,一行如下: "拒绝加载..."错误发生在导入语句上。 我怎样才能摆脱这个错误?