Class GeneratorPropertiesBuilder.TargetConnectionBuilder
- java.lang.Object
-
- pro.chenggang.project.reactive.mybatis.support.generator.properties.GeneratorPropertiesBuilder.TargetConnectionBuilder
-
- Enclosing class:
- GeneratorPropertiesBuilder
public static class GeneratorPropertiesBuilder.TargetConnectionBuilder extends Object
The target connection builder.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GeneratorPropertiesBuilder.TargetConnectionBuilderjdbcConnectionUrl(String jdbcConnectionUrl)The Jdbc connection url.GeneratorPropertiesBuilder.TargetConnectionBuilderjdbcDriverClassName(String jdbcDriverClassName)The Jdbc driver class name.GeneratorPropertiesBuilder.TargetConnectionBuilderpassword(String password)The jdbc password.GeneratorPropertiesBuilderthenBuilder()Build TargetConnection and return GeneratorPropertiesBuilderGeneratorPropertiesBuilder.TargetConnectionBuilderusername(String username)The jdbc username.
-
-
-
Method Detail
-
jdbcDriverClassName
public GeneratorPropertiesBuilder.TargetConnectionBuilder jdbcDriverClassName(String jdbcDriverClassName)
The Jdbc driver class name.- Parameters:
jdbcDriverClassName- the jdbc driver class name- Returns:
- the target connection builder
-
jdbcConnectionUrl
public GeneratorPropertiesBuilder.TargetConnectionBuilder jdbcConnectionUrl(String jdbcConnectionUrl)
The Jdbc connection url.- Parameters:
jdbcConnectionUrl- the jdbc connection url- Returns:
- the target connection builder
-
username
public GeneratorPropertiesBuilder.TargetConnectionBuilder username(String username)
The jdbc username.- Parameters:
username- the username- Returns:
- the target connection builder
-
password
public GeneratorPropertiesBuilder.TargetConnectionBuilder password(String password)
The jdbc password.- Parameters:
password- the password- Returns:
- the target connection builder
-
thenBuilder
public GeneratorPropertiesBuilder thenBuilder()
Build TargetConnection and return GeneratorPropertiesBuilder- Returns:
- the GeneratorPropertiesBuilder
-
-