Iwao AVE!
Iwao AVE!
Hello @SumStar93 , It sounds like you are sharing some object that is not thread safe between multiple threads. There are some general advices in the following page. https://mybatis.org/spring/using-api.html If...
> Already XML mapper can use the configuration's variables as follow: True, but I think this is not the designed behavior. In other words, it works by accident and we...
Hello @Liyunze-1314 , Please add the definition of `com.aze.dao.EmployeeMapper.getEmpById`.
I am OK with the basic idea (i.e. use `byte` instead of `List`), but I may want to make some minor changes before we merge it. Also, even though this...
Hello @gallyamb , When using cursor involving nested results, you should specify `resultOrdered="true"` in the ``. The test still won't pass, but the `DefaultResultSetHandler.nestedResultObjects` will hold nested objects of the...
Hi @gallyamb , When there is a `` and the rows are not properly ordered, the result could be incorrect. For ``, the result may be correct regardless of the...
Hi @gallyamb , I thought about it a long time ago and there is a corner case. I'll try to explain, but first, you need to understand that `resultOrdered="true"` is...
Hi @gallyamb , I think the current behavior is fine. - The default (`resultOrdered="false"`) works for all users. - Users who need the best performance can find `resultOrdered="true"` in the...
Hello @k4n5ha0 , Filtering characters can never be a good strategy to prevent SQL injection as there are many techniques to circumvent those filters. The only reliable protection is to...
`${}` is an important feature and I am not comfortable with adding an option to disallow its usage. It is not that difficult to use `${}` safely, so you should...