Open yl-yue opened 4 years ago
https://github.com/spring-projects/sts4/issues/515
在1.3.3版本中存在元数据错误,STS编译器上显示错误标识。但在即将发布的1.3.4版本中,作者已将 AuthDefaultSource 枚举类型替换成了 String 类型。
AuthDefaultSource
String
关联代码行:https://github.com/justauth/justauth-spring-boot-starter/blob/2a593a27709934a2359301abe963789726ffeffe/src/main/java/com/xkcoding/justauth/autoconfigure/JustAuthProperties.java#L50
采用枚举作为 Map 的 key 不应该是更好的选择么,同时保留了配置限制与提示避免出错。
Map
关联问题
https://github.com/spring-projects/sts4/issues/515
问题描述
在1.3.3版本中存在元数据错误,STS编译器上显示错误标识。但在即将发布的1.3.4版本中,作者已将
AuthDefaultSource
枚举类型替换成了String
类型。关联代码行:https://github.com/justauth/justauth-spring-boot-starter/blob/2a593a27709934a2359301abe963789726ffeffe/src/main/java/com/xkcoding/justauth/autoconfigure/JustAuthProperties.java#L50
带来了新的疑惑期望解答
采用枚举作为
Map
的 key 不应该是更好的选择么,同时保留了配置限制与提示避免出错。