Results 12 issues of GeTOUO

How to make a complete conversion from Scala to java?

Thanks for this project, it's great, but I have some problems and need help. I have several hundred markdown snippets, scattered in nested markdown using . The error of any...

There are Chinese annotations in my code, but the generated Java annotations show exceptions and the final data can not be converted into Chinese. `* @param dictCode 标识码` `* param:...

bug
help wanted

I can't compile: My environment is Maven3.6 + scala2.12.8 + java1.8 For example, I have a class like this: `case class AreaModel(code: String, name: String, level: String, parent: String, code_short:...

How to use it in projects built with Maven? My project used Scala built by maven. I wanted to use this library to generate documents, but I didn't find a...

I have a syntax file designed as follows: ``` grammar CusJson; DOT : '.' ; QUOTA : '"' ; prog : value (',' value)* EOF; value : number | string;...

### 当前使用版本(必填,否则不予处理) V3.5.3.1 ### 该问题是如何引起的?(确定最新版也有问题再提!!!) `BaseMultiTableInnerInterceptor ` 在执行 `processPlainSelect(final PlainSelect plainSelect, final String whereSegment) ` 方法时逻辑有漏洞 ### 重现步骤(如果有就写完整) 1. 下列sql是一个联表查询用户及其对应的角色已经授予了哪些数据权限范围,通过拦截器,会在执行该sql时,同样进行数据权限的过滤,过滤的逻辑是AUTH_SUBJECT 表的数据内容,但是条件的执行时,过滤的条件语句被错误地添加到了on的联表语句中。如果这是一个 join连接这没有问题,但对于 `LEFT JOIN`来说会左表的数据会超出范围最终导致结果集返回了过多的数据。 ``` SELECT SUB.id AS subject_id, SUB.NAME...

my project config: springboot 3.1.1 jdk17 I made the image `mvn spring-boot:build-image -Pnative` with the following command, and then it ran fine locally and failed to boot on a machine...

type:question

现在,用户可以继承ClientWrapper并根据自己的需要补充SDK内尚未提供的接口调用。 ``` class MyClient extends ClientWrapper { public MyClient(Client client) { super(client); } // 补充SDK尚未封装的接口: 小程序登录。 public String appletAuthenticateCode2Session(String code) { Map body = new HashMap(1); body.put("code", code); this._getClient().post("https://open.feishu.cn/open-apis/mina/v2/tokenLoginValidate", body,...

If there are duplicate keys in the JSON, the current JSON parser will take the value corresponding to the first occurrence of the key: inputString: ``` public class SimdJsonTest {...