Package | Description |
---|---|
org.mybatis.generator.api |
Provides the main classes and interfaces used by clients of MyBatis Generator.
|
org.mybatis.generator.codegen.mybatis3 | |
org.mybatis.generator.config | |
org.mybatis.generator.internal | |
org.mybatis.generator.plugins |
Modifier and Type | Method and Description |
---|---|
List<GeneratedXmlFile> |
CompositePlugin.contextGenerateAdditionalXmlFiles() |
default List<GeneratedXmlFile> |
Plugin.contextGenerateAdditionalXmlFiles()
This method can be used to generate any additional XML file needed by
your implementation.
|
List<GeneratedXmlFile> |
CompositePlugin.contextGenerateAdditionalXmlFiles(IntrospectedTable introspectedTable) |
default List<GeneratedXmlFile> |
Plugin.contextGenerateAdditionalXmlFiles(IntrospectedTable introspectedTable)
This method can be used to generate additional XML files needed by your
implementation that might be related to a specific table.
|
abstract List<GeneratedXmlFile> |
IntrospectedTable.getGeneratedXmlFiles()
This method should return a list of generated XML files related to this
table.
|
List<GeneratedXmlFile> |
MyBatisGenerator.getGeneratedXmlFiles()
Returns the list of generated XML files after a call to one of the generate methods.
|
Modifier and Type | Method and Description |
---|---|
boolean |
CompositePlugin.sqlMapGenerated(GeneratedXmlFile sqlMap,
IntrospectedTable introspectedTable) |
default boolean |
Plugin.sqlMapGenerated(GeneratedXmlFile sqlMap,
IntrospectedTable introspectedTable)
This method is called when the SqlMap file has been generated.
|
Modifier and Type | Method and Description |
---|---|
List<GeneratedXmlFile> |
IntrospectedTableMyBatis3Impl.getGeneratedXmlFiles() |
Modifier and Type | Method and Description |
---|---|
void |
Context.generateFiles(ProgressCallback callback,
List<GeneratedJavaFile> generatedJavaFiles,
List<GeneratedXmlFile> generatedXmlFiles,
List<GeneratedKotlinFile> generatedKotlinFiles,
List<GeneratedFile> otherGeneratedFiles,
List<String> warnings) |
Modifier and Type | Method and Description |
---|---|
static String |
XmlFileMergerJaxp.getMergedSource(GeneratedXmlFile generatedXmlFile,
File existingFile) |
Modifier and Type | Method and Description |
---|---|
List<GeneratedXmlFile> |
MapperConfigPlugin.contextGenerateAdditionalXmlFiles() |
Modifier and Type | Method and Description |
---|---|
boolean |
MapperConfigPlugin.sqlMapGenerated(GeneratedXmlFile sqlMap,
IntrospectedTable introspectedTable) |
boolean |
UnmergeableXmlMappersPlugin.sqlMapGenerated(GeneratedXmlFile sqlMap,
IntrospectedTable introspectedTable) |
Copyright © 2006–2022 MyBatis.org. All rights reserved.