Jagger Wang
Jagger Wang
It’s the same for Terminal.app, and I also tried run goaccess locally both in iTerm2 and Terminal. I wanted to confirm there is no need to press ctrl or any...
It seems to related to my deleting of `schedulerName: tidb-scheduler` in TiDBCluster CRD, and I manually deleted `tidb-scheduler` deployment. I tried to add back of `schedulerName: tidb-scheduler`, but `tidb-scheduler` not...
Multi-valued indexes on json arrays and descending indexes are exactly what we need, is there any plan for these two features?
@SunRunAway For descending indexes, suppose we have a table named `file` to store a filesystem's meta info. | Name | Type | Desc | | ------------- | ------------- | -------------...
We will carefully consider your suggestion, and at first glance, providing functionality is not a problem.
If I change the class of manually created ConversionService bean from `DefaultFormattingConversionService` to `ApplicationConversionService`, the enum type convert error dissapeared, but the custom mappers still not be auto detected.
@Chessray Thanks for your suggestion! It seems `ConverterScan` is just for test only, I tried the following way but the problem is still there. ```java @Bean public ConversionService conversionService() {...
Temporary resolve this problem by manually add converters to `ApplicationConversionService`, but it's very inconvenient. ```java @Bean public ConversionService conversionService() { var conversionService = new ApplicationConversionService(); conversionService.addConverter(new UserDtoMapperImpl()); conversionService.addConverter(new UserModelMapperImpl()); return...
Does it because the `ConversionService` bean created after custom converter beans, so the converters cannot be auto registered, as there is no `ConversionService` bean. But how to make the generated...
Here is the [testing project](https://github.com/jaggerwang/user-simplified). `ai.basic.basicai.user.adapter.config.CommonConfig` ```java @Configuration(proxyBeanMethods = false) public class CommonConfig { @Bean public ConversionService conversionService() { var conversionService = new ApplicationConversionService(); // If comment this line, the...