yindz

Results 6 issues of yindz

您好! 首先感谢您的项目让很多开发者节省了时间,减少了重复代码量。但我看官网文档中建议使用者重写 FastDepShiroJwtAuthorization 类的示例代码是这样的: ``` @RestControllerAdvice @ConditionalOnMissingBean(FastDepShiroJwtAuthorization.class) public class FastDepShiroJwtAuthorization implements FastDepShiroJwtAuthorizationImp { //... ... } ``` 而实际上因为 @ConditionalOnMissingBean(FastDepShiroJwtAuthorization.class) 的存在,如果有不太熟悉的开发者原样Copy这块示例代码,则会达不到预期的效果。个人建议这块代码可以稍作修改(或者加一个简要的说明),比如: ``` @RestControllerAdvice public class MyFastDepShiroJwtAuthorization extends FastDepShiroJwtAuthorization implements FastDepShiroJwtAuthorizationImp {...

- [x] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 3.1.5 * Operating System version: Windows 10...

type/bug

要满足真实场景使用的话,有小部分数据是需要修正的(如繁简转换,属相不准确等)。我自己通过数据库方式做了修正,语句如下: `CREATE TABLE `tmp_calendar` ( `day` varchar(255) DEFAULT NULL, `gregorianYear` varchar(255) DEFAULT NULL, `gregorianMonth` varchar(255) DEFAULT NULL, `gregorianDate` varchar(255) DEFAULT NULL, `lunarYear` varchar(255) DEFAULT NULL, `lunarMonth` varchar(255) DEFAULT NULL, `lunarDate`...

**What kind of change does this PR introduce?** (check at least one) - [ ] Bugfix - [x] Feature - [ ] Code style update - [ ] Refactor -...

由于format 为String类型,此处应当使用 TWO_DECIMAL_STR 字符串做逻辑判断而不是 TWO_DECIMAL 对象。