Skip to content
New issue

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

Wrong jOOQ exception translator with empty db name #44869

Open
MelleD opened this issue Mar 25, 2025 · 5 comments · May be fixed by #44954
Open

Wrong jOOQ exception translator with empty db name #44869

MelleD opened this issue Mar 25, 2025 · 5 comments · May be fixed by #44954
Labels
for: team-meeting An issue we'd like to discuss as a team to make progress status: waiting-for-triage An issue we've not yet triaged

Comments

@MelleD
Copy link
Contributor

MelleD commented Mar 25, 2025

If there is no db product name in jOOQ available the sql error state translator is used by default:

See:
https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jooq/DefaultExceptionTranslatorExecuteListener.java#L116

	return (dbName != null) ? new SQLErrorCodeSQLExceptionTranslator(dbName)
					: new SQLStateSQLExceptionTranslator();

During discussion of this ticket, we figured out the translator chain is not correct.
Matching the core Spring fallback chain, it should using the SQLErrorCodeSQLExceptionTranslator for empty dbName.

Also the javadoc from SQLErrorCodeSQLExceptionTranslator gives a hint not to use this a main translator:
SQLErrorCodeSQLExceptionTranslator
"This translator is commonly used as a fallback behind a primary translator such as SQLErrorCodeSQLExceptionTranslator or SQLExceptionSubclassTranslator.
"

So IMHO this line should changed to:

		return (dbName != null) ? new SQLErrorCodeSQLExceptionTranslator(dbName)
					: new SQLErrorCodeSQLExceptionTranslator();
@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Mar 25, 2025
@MelleD
Copy link
Contributor Author

MelleD commented Mar 25, 2025

If desired, I can do a PR from my branch:
https://github.com/MelleD/spring-boot/tree/44869-fix-default-exception-translator

@wilkinsona
Copy link
Member

It's been this way since the beginning:

private SQLExceptionTranslator getTranslator(ExecuteContext context) {
SQLDialect dialect = context.configuration().dialect();
if (dialect != null) {
return new SQLErrorCodeSQLExceptionTranslator(dialect.name());
}
return new SQLStateSQLExceptionTranslator();
}

If we're going to change this, we'll have to consider when to do it. I wonder if there may be apps relying on the current behavior?

@wilkinsona wilkinsona added the for: team-meeting An issue we'd like to discuss as a team to make progress label Mar 25, 2025
@MelleD
Copy link
Contributor Author

MelleD commented Mar 25, 2025

It's been this way since the beginning:

I meant with spring core how the other modules like spring data or jdbc is using the chain.

SQLErrorCodeSQLExceptionTranslator --> fallback to --> SQLExceptionSubclassTranslator --> fall back to --> SQLStateSQLExceptionTranslator

If we're going to change this, we'll have to consider when to do it. I wonder if there may be apps relying on the current behavior?

Do you think it's really breaking (unit test was not breaking), because in the the of the chain the last translator is the SQLStateSQLExceptionTranslator

@jhoeller
Copy link

@wilkinsona if you'd like to be defensive in terms of avoiding runtime auto-detection of the database etc, it might be better to fall back to SQLExceptionSubclassTranslator directly there. In any case, I definitely recommend that over SQLStateSQLExceptionTranslator. For Spring core setups, we replaced all fallback to SQLStateSQLExceptionTranslator with SQLExceptionSubclassTranslator a few years ago already. Note that SQLExceptionSubclassTranslator in turns falls back to SQLStateSQLExceptionTranslator, so it only adds JDBC-level exception rules but is still capable of introspecting SQL state as well.

@MelleD MelleD linked a pull request Mar 31, 2025 that will close this issue
@MelleD
Copy link
Contributor Author

MelleD commented Mar 31, 2025

Here is a proposal for the change with a test case:
#44954

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
for: team-meeting An issue we'd like to discuss as a team to make progress status: waiting-for-triage An issue we've not yet triaged
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants