We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27e0b9b commit 0987769Copy full SHA for 0987769
authcode/src/main/java/org/cloudfoundry/identity/samples/authcode/Application.java
@@ -56,7 +56,7 @@ public static void main(String[] args) {
56
// property set by spring-cloud-sso-connector
57
@Value("${ssoServiceUrl:placeholder}")
58
private String ssoServiceUrl;
59
- @Value("${security.oauth2.client.clientId}")
+ @Value("${security.oauth2.client.clientId:placeholder}")
60
private String clientId;
61
62
@Autowired(required = false)
authcode/src/main/resources/application.yml
@@ -13,4 +13,4 @@ security:
13
enabled: false
14
logging.level:
15
org.springframework.security: DEBUG
16
-resourceServerUrl: ${RESOURCE_URL:https://resource-server.domain}
+resourceServerUrl: ${RESOURCE_URL:https://resource-server.domain}
0 commit comments