我已经开发了一个身份验证服务器和primeface客户端。我想通过两个URL来使用这些服务,这些URL映射到以下相同的源中:
http://www.example1.com/client
我放了
security.oauth2.client.user-authorization-uri =/auth/oauth/authorize
但出现错误
[/ auth / oauth / authorize]不是有效的HTTP URL
如何将相对路径作为s ecurity.oauth2.client.user-authorization-uri
放入属性文件或
将网址设为
security.oauth2.client.user-authorization-uri =[redirect url domain name]/auth/oauth/authorize
还是可以在不使用属性文件的情况下使用java bean配置那些客户端属性?非常感谢您的建议。