Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 552 Bytes

JdbcConnectionReference.md

File metadata and controls

13 lines (7 loc) · 552 Bytes

Pattern: JDBC - Connection reference

Issue: -

Description

Checks for direct use of java.sql.Connection, which is discouraged and almost never necessary in application code.

Note: If a violation is triggered from an import statement, then you may get multiple violations per import if there are multiple classes in the source file. In that case, the imports are processed once per class.

Further Reading