当前位置:网站首页>MBG combat zero basis
MBG combat zero basis
2022-07-04 10:53:00 【Eric%258436】
** If there is a mistake , Thank you for correcting **
If there is a mistake , Thank you for correcting , Please send a private message to the blogger , There is a red envelope for hard work , Worship “ one-word teacher ”.
Please find the paragraphs you need according to the table of contents
Introduction : This blog is organized for individuals Java Learning notes , If there is a mistake , Thank you for correcting . System learning , Welcome to continue to pay attention , Follow up updates
Java communication qq Group 383245788
This article aims to learn and communicate , personal crud The learning
This paper makes a lot of references MBG Official website :http://mybatis.org/generator/
MBG Doing it ssm Small demo Can be used when , convenient ,MP You can also do , And do better ,MBG It is suggested to just understand .
MBG brief introduction
MyBatis Generator (MBG) yes MyBatis Code generator for . It will be for all versions of MyBatis The generated code . It will introspect a database table ( Or more tables ) And generate artifacts that can be used to access tables . This reduces the initial hassle of setting up objects and configuration files to interact with database tables .MBG Try to be simple about a lot CRUD( establish 、 retrieval 、 to update 、 Delete ) Has a significant impact on database operations . You still need to write... For connection queries or stored procedures SQL And object code .
MBG Generate code in different styles and languages , It depends on how it is configured . for example ,MBG Can generate Java or Kotlin Code .MBG Can generate and MyBatis3 Compatible XML - Although it is now considered MBG Legacy uses . Newer styles of generated code do not need XML.
xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<context id="DB2Tables" targetRuntime="Mybatis3">
<commentGenerator>
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/ssm_mdsp"
userId="root"
password="root">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false" />
</javaTypeResolver>
<!-- Appoint javaBean The location of the generation -->
<javaModelGenerator targetPackage="top.atluofu.pojo"
targetProject=".\src\main\java">
<property name="enableSubPackages" value="true" />
<property name="trimStrings" value="true" />
</javaModelGenerator>
<!-- Appoint sql Map where the file is generated -->
<sqlMapGenerator targetPackage="mapper" targetProject=".\src\main\resources">
<property name="enableSubPackages" value="true" />
</sqlMapGenerator>
<!-- Appoint dao Where the interface is generated ,mapper Interface -->
<javaClientGenerator type="XMLMAPPER"
targetPackage="top.atluofu.mapper" targetProject=".\src\main\java">
<property name="enableSubPackages" value="true" />
</javaClientGenerator>
<!-- table Specify the generation strategy for each table -->
<table tableName="order" domainObjectName="Order">
</table>
<table tableName="role" domainObjectName="Role">
</table>
<table tableName="trade" domainObjectName="Trade">
</table>
<table tableName="user" domainObjectName="User">
</table>
</context>
</generatorConfiguration>
xml Reference configuration
- classPathEntry: Specify drive
Such as <classPathEntry location="/Program Files/IBM/SQLLIB/java/db2java.zip" />- commentGenerator: Commenter , Generate annotations , As noted in the table , Column comment , Time stamps, etc
Start class
Use xml Configure from Java The program runs MBG
public class MBG {
@Test
public static void main(String[] args) throws XMLParserException, IOException, InvalidConfigurationException, SQLException, InterruptedException {
List<String> warnings = new ArrayList<String>();
boolean overwrite = true;
File configFile = new File("src/main/resources/mbg.xml");
ConfigurationParser cp = new ConfigurationParser(warnings);
Configuration config = cp.parseConfiguration(configFile);
DefaultShellCallback callback = new DefaultShellCallback(overwrite);
MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
myBatisGenerator.generate(null);
}
}
边栏推荐
- [Galaxy Kirin V10] [server] failed to start the network
- When I forget how to write SQL, I
- Design and common methods of test case documents
- /*Rewrite the program, find the value of the element, and return the iterator 9.13: pointing to the found element. Make sure that the program works correctly when the element you are looking for does
- Performance features focus & JMeter & LoadRunner advantages and disadvantages
- Const's constant member function after the function; Form, characteristics and use of inline function
- [testing theory] thinking about testing profession
- [untitled]
- [Galaxy Kirin V10] [server] system startup failed
- BGP ---- border gateway routing protocol ----- basic experiment
猜你喜欢
![[Galaxy Kirin V10] [server] soft RAID configuration](/img/d5/789387613fafc18f623d0cff45093b.jpg)
[Galaxy Kirin V10] [server] soft RAID configuration

Canoe - the third simulation project - bus simulation - 3-1 project implementation

Two way process republication + routing policy

Collection of practical string functions

F12 clear the cookies of the corresponding web address

Basic data types of MySQL

Application and Optimization Practice of redis in vivo push platform

Rhcsa learning practice
![[Galaxy Kirin V10] [server] system partition expansion](/img/49/5d3e28eab45d300bd5695e47b35e6b.jpg)
[Galaxy Kirin V10] [server] system partition expansion

DCL statement of MySQL Foundation
随机推荐
Dynamic memory management
RHCE - day one
Write a program to define an array with 10 int elements, and take its position in the array as the initial value of each element.
Introduction to tree and binary tree
MFC document view framework (relationship between classes)
JMeter common configuration components and parameterization
/*Rewrite the program, find the value of the element, and return the iterator 9.13: pointing to the found element. Make sure that the program works correctly when the element you are looking for does
TS type gymnastics: illustrating a complex advanced type
Terms related to hacker technology
Four characteristics and isolation levels of database transactions
C language structure to realize simple address book
I What is security testing
Day06 list job
1. Circular nesting and understanding of lists
Software sharing: the best PDF document conversion tool and PDF Suite Enterprise version sharing | with sharing
Jemeter script recording
How to use diff and patch to update the source code
Huge number (C language)
IPv6 comprehensive experiment
F12 clear the cookies of the corresponding web address