You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`@Repository
public interface VersionRepository extends JpaRepository<Version, String>{
@Query(value = "SELECT * FROM (SELECT v.version FROM VERSION_TABLE v ORDER BY RegExp_Replace(RegExp_Replace (v.version || '.', 'some regex'), 'another regex', '\\1') DESC) WHERE rownum =1", nativeQuery = true)
String getLatestDbVersionNative();
}
`
I get the error: ClassNotFoundException: net.sf.jsqlparser.statement.select.Values
I found that spring boot 3.3.0 includes spring-boot-starter-data-jdbc 3.2.3 with jsqlparser 4.6
When I override that jsqlparser version with version 4.9 the error is fixed.
I looks like an upgrade is needed.
The text was updated successfully, but these errors were encountered:
Jsqlparser is a test-only dependency, the fix will come via #1796. Until then, either exclude the JDBC dependency or pin the dependency version, please.
I have the following statement:
`@Repository
public interface VersionRepository extends JpaRepository<Version, String>{
}
`
I get the error:
ClassNotFoundException: net.sf.jsqlparser.statement.select.Values
I found that spring boot 3.3.0 includes spring-boot-starter-data-jdbc 3.2.3 with jsqlparser 4.6
When I override that jsqlparser version with version 4.9 the error is fixed.
I looks like an upgrade is needed.
The text was updated successfully, but these errors were encountered: