We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.这是整个的查询参数
其中对"standing_medical_order_flag"条件进行切换。 2.首次查询时,即"standing_medical_order_flag"为0时,数据回显正常,只有状态为0的数据。
3.第二次查询时,即"standing_medical_order_flag"为1时,数据回显也正常,只有状态为1的数据。
4.第三次查询时,即"standing_medical_order_flag"切换回0时,数据回显就有问题了,把0和1状态的数据都回显出来了。
5.打断点查看,AbstractSQLExecutor下的execute(),执行的sql没有问题
6.AbstractParser下的putQueryResult()也只有一条数据
7.后边发现在AbstractParser下的onArrayParse()下response.add(),response在不断的加入数据.
8.当我项目重启后,又重回步骤[2,3,4]的轮回。请问作者大大,是设置的有读取缓存的代码逻辑吗?如果有的话,如何去禁用掉呢?还是说我配置的有问题?
The text was updated successfully, but these errors were encountered:
断点调试 AbstractSQLExecutor 的 resultList,可能 JDBC 返回的就有问题,然后把生成的 SQL 也按顺序放数据库里执行
Sorry, something went wrong.
No branches or pull requests
Description
1.这是整个的查询参数
其中对"standing_medical_order_flag"条件进行切换。
2.首次查询时,即"standing_medical_order_flag"为0时,数据回显正常,只有状态为0的数据。
3.第二次查询时,即"standing_medical_order_flag"为1时,数据回显也正常,只有状态为1的数据。
4.第三次查询时,即"standing_medical_order_flag"切换回0时,数据回显就有问题了,把0和1状态的数据都回显出来了。
5.打断点查看,AbstractSQLExecutor下的execute(),执行的sql没有问题
6.AbstractParser下的putQueryResult()也只有一条数据
7.后边发现在AbstractParser下的onArrayParse()下response.add(),response在不断的加入数据.
8.当我项目重启后,又重回步骤[2,3,4]的轮回。请问作者大大,是设置的有读取缓存的代码逻辑吗?如果有的话,如何去禁用掉呢?还是说我配置的有问题?
The text was updated successfully, but these errors were encountered: