Adds missing JDBC interface methods.

org.openrewrite.java.migrate.JREJdbcInterfaceNewMethods

Add method implementations stubs to classes that implement JDBC interfaces.

Recipe source

GitHub, Issue Tracker, Maven Central

  • groupId: org.openrewrite.recipe

  • artifactId: rewrite-migrate-java

  • version: 2.12.0

This recipe is composed of more than one recipe. If you want to customize the set of recipes this is composed of, you can find and copy the GitHub source for the recipe from the link above.

Usage

This recipe has no required configuration options. It can be activated by adding a dependency on org.openrewrite.recipe:rewrite-migrate-java:2.12.0 in your build file or by running a shell command (in which case no build changes are needed):

  1. Add the following to your build.gradle file:

build.gradle
plugins {
    id("org.openrewrite.rewrite") version("6.12.0")
}

rewrite {
    activeRecipe("org.openrewrite.java.migrate.JREJdbcInterfaceNewMethods")
}

repositories {
    mavenCentral()
}

dependencies {
    rewrite("org.openrewrite.recipe:rewrite-migrate-java:2.12.0")
}
  1. Run gradle rewriteRun to run the recipe.

Definition

  • Adds missing method implementations

    • fullyQualifiedClassName: java.sql.Connection

    • methodPattern: *..* abort(java.util.concurrent.Executor)

    • methodTemplateString: public void abort(java.util.concurrent.Executor executor) { // TODO Auto-generated method stub }

  • Adds missing method implementations

    • fullyQualifiedClassName: java.sql.Connection

    • methodPattern: *..* getNetworkTimeout()

    • methodTemplateString: public int getNetworkTimeout() { // TODO Auto-generated method stub return 0; }

  • Adds missing method implementations

    • fullyQualifiedClassName: java.sql.Connection

    • methodPattern: *..* getSchema()

    • methodTemplateString: public java.lang.String getSchema() { // TODO Auto-generated method stub return null; }

  • Adds missing method implementations

    • fullyQualifiedClassName: java.sql.Connection

    • methodPattern: *..* setNetworkTimeout(java.util.concurrent.Executor, int)

    • methodTemplateString: public void setNetworkTimeout(java.util.concurrent.Executor executor, int milliseconds) { // TODO Auto-generated method stub }

  • Adds missing method implementations

    • fullyQualifiedClassName: java.sql.Connection

    • methodPattern: *..* setSchema(java.lang.String)

    • methodTemplateString: public void setSchema(java.lang.String schema) throws java.sql.SQLException { // TODO Auto-generated method stub }

  • Adds missing method implementations

    • fullyQualifiedClassName: java.sql.Driver

    • methodPattern: *..* getParentLogger()

    • methodTemplateString: public java.util.logging.Logger getParentLogger() { // TODO Auto-generated method stub return null; }

  • Adds missing method implementations

    • fullyQualifiedClassName: java.sql.Statement

    • methodPattern: *..* closeOnCompletion()

    • methodTemplateString: public void closeOnCompletion() { // TODO Auto-generated method stub }

  • Adds missing method implementations

    • fullyQualifiedClassName: java.sql.Statement

    • methodPattern: *..* isCloseOnCompletion()

    • methodTemplateString: public boolean isCloseOnCompletion() { // TODO Auto-generated method stub return false; }

  • Adds missing method implementations

    • fullyQualifiedClassName: javax.sql.CommonDataSource

    • methodPattern: *..* getParentLogger()

    • methodTemplateString: public java.util.logging.Logger getParentLogger() { // TODO Auto-generated method stub return null; }

See how this recipe works across multiple open-source repositories

The community edition of the Moderne platform enables you to easily run recipes across thousands of open-source repositories.

Please contact Moderne for more information about safely running the recipes on your own codebase in a private SaaS.

Contributors

Chuka Obinabo, Daryl Robbins, Tim te Beek

Last updated