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
3.5.2
org.apache.ibatis.builder.annotation.ProviderSqlSource
173 private Throwable extractRootCause(Exception e) { 174 Throwable cause = e; 175 while(cause.getCause() != null) { 176 cause = e.getCause(); 177 } 178 return cause; 179 }
176 endless loop
The text was updated successfully, but these errors were encountered:
@czw0058 Thanks for your bug reporting. I will fix this issue.
This bug occurs when throw Exception that hold cause from provider method.
Sorry, something went wrong.
Prevent infinite loop when throw Exception that hold cause from provi…
729a1ef
…der method Fixes mybatisgh-1616
Merge pull request #1617 from kazuki43zoo/gh-1616
2e9632d
Prevent infinite loop when throw Exception that hold cause from provider method
@czw0058 Published the 3.5.3-SNAPSHOT to OSS Sonatype repository at now. Please try it when there is a time.
56d0c0e
Merge pull request mybatis#1617 from kazuki43zoo/mybatisgh-1616
1a109d8
kazuki43zoo
Successfully merging a pull request may close this issue.
MyBatis version
3.5.2
org.apache.ibatis.builder.annotation.ProviderSqlSource
173 private Throwable extractRootCause(Exception e) {
174 Throwable cause = e;
175 while(cause.getCause() != null) {
176 cause = e.getCause();
177 }
178 return cause;
179 }
176 endless loop
Database vendor and version
Test case or example project
Steps to reproduce
Expected result
Actual result
The text was updated successfully, but these errors were encountered: